Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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()?

share|improve this question

2 Answers

up vote 13 down vote accepted

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.

share|improve this answer

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. ;)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.