我有两个不同的 JTextPanes ,第一个是不同的线程发送消息的日志。 html 文件中保存了会话,当用户加载这些文件时,这些文件将用作第二个 JTextPane 的内容。两个JTextPanes都具有 html 内容类型
在第一个JTextPane中,我使用StyledDocument
方法将新行直接插入insertString()
。
一切都很好所有空格和表格都是正确的("OFFLINE"
标签之前和之后):
这是一张关于NotePad ++中 html 文件的一部分的图片,其中包含Show All Characters功能:
表格和空格仍在那里。
但是,当我加载回这个文件并将其传递给第二个JTextPane时,它看起来像这样:
表格和空格不见了。我尝试使用 
而不是简单的空格,但结果是一样的。
第二个JTextPane的代码:
//settings
eventLogHistory = new JTextPane();
eventLogHistory.setEditable(false);
eventLogHistory.setName("eventLogHistory");
eventLogHistory.setContentType("text/html");
执行加载的代码:
File f=new File(directory+"eventlog.html");
if(f.exists())
{
Scanner scan = new Scanner(f);
String strtmp=new String();
strtmp=scan.nextLine();
strbld.append(strtmp+"\n");
while(scan.hasNextLine())
{
strtmp=scan.nextLine();
strbld.append(strtmp+"\n");
}
scan.close();
getEventLogHistory().setText(strbld.toString());
}
如果我用Mozzila打开 html 文件,表格和空格也会消失。
如何解决这个问题,我在这里想念什么?
更新
正如在Andrew Thompson的答案中可以看到的那样,我错过了<pre>
标签,感谢您提供有用的信息。但是,这些标记会破坏该行并从包装文本中删除所有样式。以下MCVE和示例输入模仿了该问题。
所以新问题是:如何避免先前描述的<pre>
代码行为?
MCVE :
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.IOException;
import java.util.Scanner;
import javax.swing.JButton;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextPane;
import javax.swing.text.DefaultCaret;
public class TextPaneWithHTML
{
public TextPaneWithHTML()
{
final JFrame frame = new JFrame("JTextPane with HTML content");
final JTextPane eventLogHistory = new JTextPane();
eventLogHistory.setEditable(false);
eventLogHistory.setName("eventLogHistory");
eventLogHistory.setContentType("text/html");
eventLogHistory.setForeground(Color.BLACK);
JScrollPane messageTextScrollPane= new JScrollPane( eventLogHistory );
messageTextScrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
DefaultCaret caretMessageText = (DefaultCaret)eventLogHistory.getCaret();
caretMessageText.setUpdatePolicy(DefaultCaret.ALWAYS_UPDATE);
final JFileChooser fc = new JFileChooser();
JButton loadButton = new JButton("Load content");
loadButton.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent arg0)
{
StringBuilder strbld=new StringBuilder();
int returnval=fc.showOpenDialog(frame);
if (returnval == 0)
{
File f = fc.getSelectedFile();
try
{
if(f.exists())
{
Scanner scan = new Scanner(f);
String strtmp=new String();
while(scan.hasNextLine())
{
strtmp=scan.nextLine();
strbld.append(strtmp+System.getProperty("line.separator"));
}
scan.close();
eventLogHistory.setText(strbld.toString());
}
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
});
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(1200, 700);
frame.getContentPane().add(messageTextScrollPane, BorderLayout.CENTER);
frame.getContentPane().add(loadButton, BorderLayout.NORTH);
frame.setVisible(true);
}
public static void main(String[] args)
{
new TextPaneWithHTML();
}
}
测试输入,将其复制到txt文件中并另存为html :
<html>
<head>
<style type="text/css">
.red{ color:#ff0000; }.blue{ color:#0000ff; }.green{ color:#33ff33; }.CLIgreen{ color:#02f002; }.khaki{ color:#8f8fff; }.white{ color:#ffffff; }.yellow{ color:#ffff00; }.pink{ color:#ff00ff; }.grey{ color:#d3d3d3; }.orange{ color:#ffc800; }p{ font-family: arial; font-size: 10; font-weight: bold; margin:0; }
pre {
display:inline
}
</style>
</head>
<body>
<p><font class="white">[2014.11.17., 12:38:10]: </font><font class="khaki">[TN-11111111] [11111111]: [cp1] </font><font class="grey"><pre>OFFLINE </pre></font><font class="white"> ---- </font><font class="green">SLAVE</font><font class="blue"></font></p>
<p><font class="white">[2014.11.17., 12:38:10]: </font><font class="khaki">[TN-11111111] [11111111]: [cp2] </font><font class="grey">OFFLINE </font><font class="white"> ---- </font><font class="blue">MASTER</font>
</p>
<p><font class="white">[2014.11.17., 12:38:10]: </font><font class="khaki">[TN-11111111] [11111111]: [Clock] </font><font class="grey">OFFLINE </font><font class="white"> ---- </font><font class="green">LOCKED</font><font class="blue"></font></p>
<p><font class="white">[2014.11.17., 12:38:10]: </font><font class="khaki">[TN-11111112] [11111112]: [cp3] </font><font class="grey">OFFLINE </font><font class="white"> ---- </font><font class="green">SLAVE</font><font class="blue"></font></p>
<p><font class="white">[2014.11.17., 12:38:10]: </font><font class="khaki">[TN-11111112] [11111112]: [cp4] </font><font class="grey">OFFLINE </font><font class="white"> ---- </font><font class="yellow">PASSIVE</font><font class="blue"></font></p>
<p><font class="white">[2014.11.17., 12:38:10]: </font><font class="khaki">[TN-11111112] [11111112]: [cp2] </font><font class="grey">OFFLINE </font><font class="white"> ---- </font><font class="blue">MASTER</font>
</p>
<p><font class="white">[2014.11.17., 12:38:10]: </font><font class="khaki">[TN-11111112] [11111112]: [cp1] </font><font class="grey">OFFLINE </font><font class="white"> ---- </font><font class="blue">MASTER</font>
</p>
</body>
</html>
<pre>
代码仅适用于<pre>
和</pre>
的第一行和换行符。
答案 0 :(得分:1)
..有 html 内容类型..表格和空格都消失了。
是。那样做会。
除非相关文字包含在<pre>
和</pre>
中以表示文本的预格式化部分,否则会对空格进行规范化并忽略标签