RosettaCodeData/Task/String-length/Java/string-length-1.java

5 lines
269 B
Java
Raw Normal View History

2013-04-11 01:07:29 -07:00
String s = "Hello, world!";
2015-02-20 00:35:01 -05:00
int byteCountUTF16 = s.getBytes("UTF-16").length; // Incorrect: it yields 28 (that is with the BOM)
int byteCountUTF16LE = s.getBytes("UTF-16LE").length; // Correct: it yields 26
int byteCountUTF8 = s.getBytes("UTF-8").length; // yields 13