将HTML格式的文本从JTextPane复制到Notepad ++

时间:2015-01-22 15:25:46

标签: java html swing jtextpane

我正在使用JtextPane,我正在使用textPane.setPage(url)加载HTML文件。它在HTML格式中显得正确,但是当我选择all并单击复制并将其粘贴到Notepad ++时,它不会以正确的html格式显示;相反,它在一行中显示html文件的内容。我想在Notepad ++上粘贴精确的html格式文本,因为它在JTextPane上显示。

请提供任何帮助。

附加JTextPane代码。

    textPane = New JtextPane();
    textPane.setContentType( "text/html" );
    textPane.setAutoscrolls(true);
    HTMLEditorKit htmlEditor = new HTMLEditorKit();
    Document doc = htmlEditor.createDefaultDocument();
    textPane.setEditorKit( htmlEditor );
    textPane.setDocument( doc );
    textPane.setEditable( false );
    textPane.setBackground( Color.WHITE );
    textPane.getActionMap();
    textPane.setFont( EpsilonTheme.getFontA().deriveFont( 17.0F ) );

1 个答案:

答案 0 :(得分:0)

过去之后去"语言"并选择HTML enter image description here