vote up 0 vote down star

I have a requirement to read a RTF file with thai characters and write it to a text file. I tried using TIS-620, MS874,ISO-8859-11,but thai characters are not displaying properly when i open the resulting output file in notepad or textpad. But it works well with Wordpad. Please guide me.

Thanks and Regards, Ramya.

Code that solved the problem (posted in comment, adding here to make it readable!):

FileInputStream fin = new FileInputStream(fileName);
DataInputStream din = new DataInputStream(fin);
//creating a default blank styled document
DefaultStyledDocument styledDoc = new DefaultStyledDocument();
//Creating a RTF Editor kit
RTFEditorKit rtfKit = new RTFEditorKit();
//Populating the contents in the blank styled document
rtfKit.read(din,styledDoc,0);
// Getting the root document
Document doc = styledDoc.getDefaultRootElement().getDocument();
//Printing out the contents of the RTF document as plain text
System.out.println(doc.getText(0,doc.getLength()));
flag
1  
Is the output file also RTF? – Alan Moore Jul 30 at 10:41
No the output file is text file. We solved the issue with the code posted below. – Ramya Jul 30 at 10:50

1 Answer

vote up 0 vote down

I don't think notepad handles all character encodings, from a little Googling. Could you try re-encoding the characters into UTF-8 (or some other unicode format), since Notepad does handle that correctly? You'll want to use the BOM.

I also stumbled across a tool for converting files in Thai into various other encodings.

Finally, is there a requirement that the files can be opened in Notepad? It's not as if Notepad is the last word in text editing.

link|flag
FileInputStream fin = new FileInputStream(fileName); DataInputStream din = new DataInputStream(fin); //creating a default blank styled document DefaultStyledDocument styledDoc = new DefaultStyledDocument(); //Creating a RTF Editor kit RTFEditorKit rtfKit = new RTFEditorKit(); //Populating the contents in the blank styled document rtfKit.read(din,styledDoc,0); // Getting the root document Document doc = styledDoc.getDefaultRootElement().getDocument(); //Printing out the contents of the RTF document as plain text System.out.println(doc.getText(0,doc.getLength())); – Ramya Jul 30 at 10:50
How did that solve the problem? That doesn't do anything with encodings of the file output stream at all! – Dominic Rodger Jul 30 at 10:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.