use of javax.swing.text.rtf.RTFEditorKit in project openj9 by eclipse.
the class RtfChild method convert.
public static String convert(String rtf) throws Exception {
DefaultStyledDocument styledDoc = new DefaultStyledDocument();
RTFEditorKit rtfKit = new RTFEditorKit();
StringReader reader = null;
reader = new StringReader(rtf);
rtfKit.read(reader, styledDoc, 0);
Document doc = styledDoc.getDefaultRootElement().getDocument();
String txt = doc.getText(0, doc.getLength());
return txt;
}
use of javax.swing.text.rtf.RTFEditorKit in project openj9 by eclipse.
the class Rtf method convert.
public static String convert(String rtf) throws Exception {
DefaultStyledDocument styledDoc = new DefaultStyledDocument();
RTFEditorKit rtfKit = new RTFEditorKit();
StringReader reader = null;
reader = new StringReader(rtf);
rtfKit.read(reader, styledDoc, 0);
Document doc = styledDoc.getDefaultRootElement().getDocument();
String txt = doc.getText(0, doc.getLength());
return txt;
}
Aggregations