Jskad has two new menu items that are a shortcut for running a standalone

TMW->Unicode conversion: 'Save as Unicode RTF...' and 'Save as
Unicode UTF-8 Text...'.
This commit is contained in:
dchandler 2005-02-27 10:27:37 +00:00
parent 107fcce565
commit 24403bb395
4 changed files with 165 additions and 31 deletions

View file

@ -466,7 +466,8 @@ public class TibetanConverter implements FontConverterConstants {
if (TMW_TO_WYLIE_TEXT == ct || TMW_TO_ACIP_TEXT == ct) {
try {
BufferedWriter bw
= new BufferedWriter(new OutputStreamWriter(out));
= new BufferedWriter(new OutputStreamWriter(out,
"UTF-8"));
tdoc.writeTextOutput(bw);
bw.flush();
} catch (IOException e) {