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()?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
According to its documentation
You could use |
||||
|
|
|
Reading the Javadoc, it appear that String.getBytes() returns a This could be the same thing, but it might not be. Its always useful to read the Javadoc if you want to know something. ;) |
|||
|
|