Hai all.I have a doubt regarding the generation of Unicode for languages other than English. Do we have to include any package to get Unicode of such languages.
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hai all.I have a doubt regarding the generation of Unicode for languages other than English. Do we have to include any package to get Unicode of such languages.
Each version of Java covers a specific version of the Unicode standard. This relation is described in the javadoc for the java.lang.Character class. Java 7 covers Unicode 6.0.0.
For the covered Unicode version, for what I know, the Java framework covers all the "logical" aspects of Unicode: conversion to/from bytes, normalization, surrogate pairs, etc.... At this level there nothing to "include".
If you mean how to graphically display Unicode characters, this depends on the font(s) used in the application ..... and it's all another (not always easy) story ....
Andrea, www.andbin.net — SCJP 5 (91%) – SCWCD 5 (94%)
Useful links for Java beginners – My new project Java Examples on Google Code
I have checked the following link http://docs.oracle.com/javase/tutori...intro.html.but couldn't get a clear idea about how to get the Unicode of languages other than English
Andrea, www.andbin.net — SCJP 5 (91%) – SCWCD 5 (94%)
Useful links for Java beginners – My new project Java Examples on Google Code
Threads merged.
Please don't start new threads on topics you've already started. Continue the conversation in the original.