如何在 Java 中对 Microsoft Windows 代码页 1251 (Cyrl) 中的字符进行编码

发布于 2024-10-21 17:08:35 字数 69 浏览 2 评论 0原文

我想使用 Microsoft Windows Codepage 1251 (Cyrl) 表对 Java 中的字符串进行编码。

I want to encode string in Java with Microsoft Windows Codepage 1251 (Cyrl) table.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故事还在继续 2024-10-28 17:08:35

您不必“编码”字符串。当您将字符串从字节转换为字节时,您需要对它们进行解码/编码。所以你实际上编码了一个二进制数组。

byte[] cp1251encodedBytes = "your characters".getBytes(Charset.forName("Cp1251"));

支持的编码列表:http://download. oracle.com/javase/1.4.2/docs/guide/intl/encoding.doc.html

更新:按照 McDowell 的评论更新为 Charset.forName()。

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.

byte[] cp1251encodedBytes = "your characters".getBytes(Charset.forName("Cp1251"));

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文