2011-12-05 21 views
2

我必須做出一個聊天室像這樣的:的JTextPane或JEditorPane中的聊天室

enter image description here

該消息還顯示有展現笑臉,一切神祕島是複製/ pastable像Skype的。

我不知道如何選擇JEditor和JTextpane。我想我都面臨如下困難:

的JEditorPane:

  • 複製/ Pastable,可以顯示錶情和複製粘貼他們。
  • 我無法設置消息的leftindent上時,我將內容設置爲text/html的

的JTextPane:

  • 我可以設置leftindent上
  • 無法複製/粘貼當我將文本內容設置爲html時的笑臉圖標。
  • 無法將郵件

也許我錯了,我不要在顯示笑臉;知道足夠的東西,所以我想聽聽你的意見:)

非常感謝你。

Regards

回答

2

使用JTextPane。將內容類型設置爲text/html。並通過setText()放置適當的html;

這是對本地圖片 http://java-sl.com/tip_local_images.html

而這一個有關使用Java 1.7的笑容 http://java-sl.com/tip_autoreplace_smiles.html

+0

嗨,在這兩個例子中,使用了JEditorPanes,也許你的意思是我應該使用JEditorPanes而不是JTextPane? –

+0

JTextPane擴展了JEditorPane,因此JEditorPane描述的所有內容都可以應用於JTextPane。 – StanislavL

2

(附加StanislavL的答案。)至少在JTextPane的leftindent上的工作原理:

<html> 
    <head> 
    <style type='text/css'> 
     p { text-indent: 20px; } 
    </style> 
    </head> 
    <body> 
    <p style="margin-top: 0"> 
    The text. 
    </p> 
    </body> 
</html>