Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 deletions
|
|
@ -1,4 +1,4 @@
|
|||
String s = "Hello, world!";
|
||||
int byteCountUTF16 = s.getBytes("UTF-16").length; // Incorrect it yield 16 that is with the BOM
|
||||
int byteCountUTF16 = s.getBytes("UTF-16LE").length; // Correct it yield 14
|
||||
int byteCountUTF8 = s.getBytes("UTF-8").length;
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue