我必须像这样做一个聊天室:
显示的信息还必须显示笑脸和myst可以像Skype一样复制/粘贴的所有内容。
我不知道在JEditor和JTextpane之间做出选择。我尝试过两次遇到以下困难:
JEditorPane:
JTextPane:
也许我错了,我不知道足够的事情,所以我想听听你的意见:)
非常感谢。
此致
答案 0 :(得分:2)
使用JTextPane。将内容类型设置为text / html。并通过setText();
放置适当的html这是关于本地图像的 http://java-sl.com/tip_local_images.html
答案 1 :(得分:2)
(除了StanislavL的回答。)至少在Java 1.7中,leftindent适用于JTextPane:
<html>
<head>
<style type='text/css'>
p { text-indent: 20px; }
</style>
</head>
<body>
<p style="margin-top: 0">
The text.
</p>
</body>
</html>