I want to encode string in Java with Microsoft Windows Codepage 1251 (Cyrl) table.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You don't have to "encode" a string. When you turn a string from/to bytes you need to decode/encode them. So you actually encode a binary array.
List of supported encodings: http://download.oracle.com/javase/1.4.2/docs/guide/intl/encoding.doc.html Update: updated to Charset.forName() as McDowell commented. |
|||||||||||
|