While displaying Telugu through unicode in Java 7,java is rendering the blends incorrectly.
For example, here is a simple snippet to display a word in HTML. It works great. All the browsers display the text correctly.
<!DOCTYPE html>
<html>
<body> అమ్మ </body>
</html>
However, the same literals when used in Java (here i am setting the same text to a text area, the display gets messed up.
Font text_font = new Font ("Gautami", Font.PLAIN, 30);
jtaInput.setFont(text_font);
jtaInput.setText("\u0C05\u0C2E\u0C4D\u0C2E");
Has any one facing issues with Java 7 in the context of unicode character rendering? Any tips/ideas to get over this?
thanks siva jasthi