Thanks anyway, but I've already tried that. My problem is a little bit different.
I have .txt file in Courier New (Western) font (-it's OK with
Java) and I used:
BufferedReader b = new BufferedReader(new FileReader ("myFile.txt"));
classes in order to read whole lines of plain text that contains unicode \uXXXX
while (
...
hash_table.put(b.readLine(), b.readLine());
...
}
And everything compiles OK, run OK too, and when it comes to:
jTextArea1.setText(hash_table.get(some_hash_item));
I get the result, but the unicode mark isn't parsed. It is as it were in a text file. Here is an example of what I get in jTextArea field:
This is Greek symbol for micrometer \u03BC
As you can see there is no correct symbol.
Please try this and tell me what have you done.
