我想将带有图像和文本的RTF文件加载到JTextPane。 问题是只发送文本而不是图像。
继承我尝试的内容:
private static final RTFEditorKit RTF_KIT = new RTFEditorKit();
(...)
text.setContentType("text/rtf");
inputStream = new FileInputStream(filename);
DefaultStyledDocument styledDocument = new DefaultStyledDocument(new StyleContext());
RTF_KIT.read(inputStream, styledDocument, 0);
text.setDocument(styledDocument);
是的我知道还有其他类似的问题,我在其中任何一个都找不到答案,谢谢。