Re: Display Byte value for GB2123 Character
On 26/05/2010 05:41, moonhkt wrote:
Hi All
I want to display Charset for GB2312 character byte value. Using
codePointAt(i) just for Unicode code.
How to diaplay GB2123 byte value ?
For ??? should be b2e2
For ??? should be cad4
cat temp.txt
TEST1|??????1
TEST2|??????2
TEST3|??????3
Writing 'TEST1|??????1
TEST2|??????2
TEST3|??????3
' to temp.txt
54455354317cb2e2cad431a54455354327cb2e2cad432a54455354337cb2e2cad433ada
.............b2e2cad4
-------------------------------8<----------------------------
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
public class GB2312Bytes {
public static void main(String[] args) {
String fileName = "temp.txt";
String text = "TEST1|??????1\n"
+ "TEST2|??????2\n"
+ "TEST3|??????3\n";
writeFile(fileName, text, "GB2312");
System.out.println(fileAsHex(fileName));
}
private static void writeFile(String fileName, String text,
String encoding) {
System.out.println("Writing '" + text + "' to " + fileName);
PrintWriter pw;
try {
pw = new PrintWriter(fileName, encoding);
pw.println(text);
pw.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
private static String fileAsHex(String fileName) {
StringBuilder sb = new StringBuilder();
FileInputStream in = null;
try {
in = new FileInputStream(fileName);
int c;
while ((c = in.read()) != -1) {
sb.append(Integer.toHexString(c));
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return sb.toString();
}
}
-------------------------------8<----------------------------
--
RGB