windows代码和java字符集之间有Map表吗?
java字符集列表
windows代码页列表
为什么我要这样做:我必须读取和分析一个二进制文件,其中包含:
0x00 word codepage like 1252, 936, 65001 I knew, and also 50222 I did not know.
0x02 word string length
0x04 bytes null-terminated string
...more strings...
我写了密码:
int codepage = read16(inputStream);
int length = read16(inputStream);
byte[] bytes = new byte[length];
inputStream.read(bytes, 0, length);
String str = new String(bytes, getCharsetFromCodepage(codepage));
getcharsetfromcodepage就是我想要的。
暂无答案!
目前还没有任何答案,快来回答吧!