簡體   English   中英

在 JTextArea 中顯示圖像

[英]Display an image in JTextArea

我正在嘗試編寫一個聊天客戶端(多線程),它應該能夠在主聊天窗口(在我的情況下為 JTextArea)中顯示圖像(由服務器發送)? 有什么辦法可以直接做到這一點,或者我必須編碼和解析我的圖像。 例如,Facebook 聊天允許您直接拖放圖像並在主聊天窗口中顯示它們。 如果我們不能在 Java 中做到這一點,請提出一些其他可行的環境。

我認為 JTextPane 更適合您的需求: http : //docs.oracle.com/javase/tutorial/uiswing/components/editorpane.html

有用:

JTextPane t = new JTextPane();
t.setContentType("text/html");
t.setText("<html><img src='" + Hello.class.getClassLoader().getResource("hello.gif").toString() + "'/></html>");

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM