1

我正在尝试编写一个聊天客户端(多线程),它应该能够在主聊天窗口(在我的情况下为 JTextArea)中显示图像(由服务器发送)?有什么方法可以直接执行此操作,还是我必须对图像进行编码和解析。例如,Facebook 聊天允许您直接拖放图像并将它们显示在主聊天窗口中。如果我们不能在 Java 中做到这一点,请建议其他一些可行的环境。

4

2 回答 2

3

我认为 JTextPane 会更好地满足您的需求:http: //docs.oracle.com/javase/tutorial/uiswing/components/editorpane.html

于 2013-05-27T22:38:33.500 回答
0

有用:

JTextPane t = new JTextPane();
t.setContentType("text/html");
t.setText("<html><img src='" + Hello.class.getClassLoader().getResource("hello.gif").toString() + "'/></html>");
于 2019-01-01T16:20:58.970 回答