Hello,
I've written a JAVA gui program with buttons having kannada text. I've used tunga font and typed the unicodes for every button label and on running individual programs i get the proper words displayed on all buttons. However when i create a jar file and run it the text is different with some of the symbols missing. I'm not sure what's wrong as no error is being shown....
Sample code:
Font font = new Font("Tunga", Font.BOLD,50);
b1=new JButton("\u0CAE\u0CC2\u0CB2\u0CB5\u0CB8\u0CCD\u0CA 4\u0CC1");
b1.setBackground(Color.green);
b1.setFont(font);
b1.setFocusPainted( false );
ex2.jpg