java.io.BufferedReaderをインポートします。
インポート java.io.IOException;
インポートjava.io.InputStreamReader;
パブリッククラス GB2UTF
{
パブリック静的文字列 GBK2Unicode(String str)
{
StringBuffer 結果 = new StringBuffer();
for (int i = 0; i < str.length(); i++)
{
char chr1 = (char)str.charAt(i);
if(!isNeedConvert(chr1))
{
result.append(chr1);
続く;
}
result.append("&#x" + Integer.toHexString((int)chr1) + ";");
}
result.toString() を返します。
}
public static boolean isNeedConvert(char para)
{
return ((para&(0x00FF))!=para);
}
パブリック静的文字列 GBK2Unicode2(String str)
{
StringBuffer 結果 = new StringBuffer();
for (int i = 0; i < str.length(); i++)
{
char chr1 = (char)str.charAt(i);
result.append("&#" + Integer.toString((int)chr1)+ ";");
}
result.toString() を返します。
}
public static void main(String[] args)
{
試す
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
文字列 str = br.readLine();
System.out.println(GBK2Unicode(str));
System.out.println(GBK2Unicode2(str));
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
-