String.getBytes() 和 Bytes.toBytes(字符串数据) 之间的区别
我正在编写 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 其文档
Bytes .toBytes()
使用 UTF-8 将参数转换为byte[]
。String.getBytes()
(不带参数) 将使用平台默认编码将String
转换为byte[]
。该编码可能因操作系统和用户设置而异。通常应避免使用该方法。您可以使用
字符串。 getBytes(String)
(或字符集
变体)来指定要使用的编码。According to its documentation
Bytes.toBytes()
converts the parameter to abyte[]
using UTF-8.String.getBytes()
(without arguments) will convert theString
tobyte[]
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 theCharset
variant) to specify the encoding to be used.阅读 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 abyte[]
usingUTF-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. ;)