String.getBytes() 和 Bytes.toBytes(字符串数据) 之间的区别

发布于 2024-12-06 12:37:48 字数 129 浏览 1 评论 0原文

我正在编写 Hadoop/HBase 作业。我需要将 Java String 转换为字节数组。 Java 的 String.getBytes() 和 Hadoop 的 Bytes.toBytes() 之间有什么区别吗?

I'm writing a Hadoop/HBase job. I needed to transform a Java String into a byte array. Is there any differences between Java's String.getBytes() and Hadoop's Bytes.toBytes()?

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

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

发布评论

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

评论(2

朦胧时间 2024-12-13 12:37:48

根据 其文档 Bytes .toBytes() 使用 UTF-8 将参数转换为 byte[]

String.getBytes() (不带参数) 将使用平台默认编码将 String 转换为 byte[]。该编码可能因操作系统和用户设置而异。通常应避免使用该方法。

您可以使用字符串。 getBytes(String) (或 字符集 变体)来指定要使用的编码。

According to its documentation Bytes.toBytes() converts the parameter to a byte[] using UTF-8.

String.getBytes() (without arguments) will convert the String to byte[] using the platform default encoding. That encoding can vary depending on the OS and user settings. Use of that method should generally be avoided.

You could use String.getBytes(String) (or the Charset variant) to specify the encoding to be used.

酒浓于脸红 2024-12-13 12:37:48

阅读 Javadoc,看来 String.getBytes() 使用默认编码返回 byte[] ,而 Bytes.toBytes() 使用 返回 byte[] UTF-8

这可能是同一件事,但也可能不是。

如果您想了解一些信息,阅读 Javadoc 总是很有用的。 ;)

Reading the Javadoc, it appear that String.getBytes() returns a byte[] using the default encoding and Bytes.toBytes() returns a byte[] using UTF-8

This could be the same thing, but it might not be.

Its always useful to read the Javadoc if you want to know something. ;)

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