将带有图像的RTF加载到JTextPane

时间:2017-01-14 18:44:15

标签: java rtf jtextpane

我想将带有图像和文本的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);

是的我知道还有其他类似的问题,我在其中任何一个都找不到答案,谢谢。

0 个答案:

没有答案