This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
Hi, I am having string from server: \u30CF\u30ED\u30FC\u30EA\u30C3\u30AF My Client programs reads this as normal ascii characters. I have to display kanji characters. How Can I convert this string to unicode and kanji characters? Please let me know Thanks angela
Angela, It depends of the encoding your JVM is using. From API: "The default encoding is determined during virtual-machine startup and typically depends upon the locale and encoding being used by the underlying operating system." In some encoding, this sequence does not map to what you need. This example may help you when trying to find the encoding you look for. After, you can change this and convert using your encoding.
Let me know if you have any problem. Hope it helps, Adrian