i am running a java program to convert hebrew to text and fix it when it is mixed with english letter.
after i convert it using a certain font that is called and done like this :
Code:
jf = new JFrame();
label2 = new JLabel("000");
label2.setSize(30, 300);
label2.setFont(Font.decode("Web Hebrew AD"));
jf.getContentPane().add(label2);
jf.pack();
jf.setVisible(true);
i put text into the label and then pull it out and recive the fixed string!
the problem is that when i try to insert it into the mysql DB i get there only ??????
what can i do?
thnaks i nadvance
peleg