Hello.
I am using POI library to read/write text from word2003 files.
I use
range = document.getRange();
system.out.println(range.text());
the Chinese character is output correctly.
But when I try to insert the same text back.
range.insertAfter(range.text());
I can only see mess code in output doc. How can I solve this?
Thanks.
Regards.
Scott
