我在Java 6中使用Swing的RTFEditorKit是这样的:
RTFEditorKit rtfParser = new RTFEditorKit();document document = rtfParser.createDefaultdocument();rtfParser.read(new ByteArrayInputStream(rtfBytes), document, 0);String text = document.getText(0, document.getLength());
那就是工作。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)