Linked Questions

60 votes
7 answers
46k views

I searched Java's internal representation for String, but I've got two materials which look reliable but inconsistent. One is: http://www.codeguru.com/cpp/misc/misc/multi-lingualsupport/article.php/...
Johnny Lim's user avatar
  • 5,883
13 votes
1 answer
17k views

I asked Google the question above and was sent to Difference between UTF-8 and UTF-16? which unfortunately doesn't answer the question. From my understanding UTF-8 should be a subset of UTF-16 ...
mike's user avatar
  • 1,784
2 votes
2 answers
4k views

<? xml version="1.0" encoding="utf-8"?> As per W3C standards we have to use utf-8 encoding, Why can not we use utf-16 or any other which are in the encoding format? Whats the difference ...
user avatar
-2 votes
1 answer
2k views

I am encountering an issue to save/ create the file using java. java.io.IOException: No such file or directory at java.io.UnixFileSystem.createFileExclusively(Native Method) ~[na:1.7.0_79] My ...
zxcvc's user avatar
  • 355
1 vote
1 answer
1k views

I do not understand why this code is not outputting the same thing? I thought the Java automatically figures out the encoding of the string? public static void main (String[] args) { try { ...
Java Addict's user avatar
-1 votes
1 answer
2k views

I doing some export to ADAM and I would like to know what is the max character I can send to Unicode string?
MoShe's user avatar
  • 6,487
0 votes
1 answer
2k views

Have to conver html string pdf.Html string contains utf-8 characters.its in other than english language.I already tried with existing solutions This is my maven code.Here i use 1.3 version of itext ...
Deepika chekuri's user avatar
1 vote
1 answer
406 views

When i download the file (pdf/xls/text) file from portal, the file name is not showing properly in IE and working fine in other browsers if(((String) requestKeys.getSessionAttribute(...
user3714194's user avatar
0 votes
1 answer
355 views

To store chinese characters in mysql, is it recommended to store them as UTF8 or UCS2? (I am using char and varchar) Also, I have seen that UTF8 uses 4 bytes of data to store values. How many does ...
David19801's user avatar
  • 11.4k
0 votes
2 answers
153 views

I have a JSON file with different names of countries and languages etc. I want to strip it down to just the information I need/want for what I am doing. For example I would like to turn [{ "name":...
J Blaz's user avatar
  • 783