JTextPane.setText(JTextPane.getText())清除HTML模式中的间隙

时间:2014-10-19 17:49:38

标签: java html swing jtextpane

当我使用JTextPane并在HTML编辑器模式下键入一些文本时

JTextPane textPane = new JTextPane();
textPane.setContentType("text/html");
//...
textPane.setText(textPane.getText());

删除行开头的空格。为什么呢?

1 个答案:

答案 0 :(得分:1)

尝试使用 在文本/ html内容类型的开头添加空格。 此链接描述了如何在html中添加空格:http://webdesign.about.com/od/beginningtutorials/qt/spaces-in-html.htm您可以使用其中一个。