简体   繁体   中英

Java: convert UTF8 String to byte array in another encoding

I have UTF8 encoded String, but I need to post parameters to Runtime process in cp1251. How can I decode String or byte array?

I need smth like:. bytesInCp1251 = encodeTo(stringInUtf8, "cp1251");


Thanks to all! This is my own solution:

OutputStreamWriter writer = new OutputStreamWriter(out, "cp1251");
writer.write(s);

There is no such thing as an "UTF8 encoded String" in Java. Java Strings use UTF-16 internally, but should be seen as an abstraction without a specific encoding. If you have a String, it's already decoded. If you want to encode it, use string.getBytes(encoding) . If you original data is UTF-8, you have to take that into account when you convert that data from bytes to String.

byte[] bytesInCp1251 = stringInUtf8.getBytes("cp1251");

This is solution!

OutputStreamWriter writer = new OutputStreamWriter(out, "cp1251");
writer.write(s);

为什么不这样做(假设stringInUtf8是UTF-8字符串)?

String cp1251Str = new String(stringInUtf8.getBytes("UTF-8"), "cp1251");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM