当前位置: 技术问答>java相关
请问如何向JTextPane中添加图片?解决必给分!!!
来源: 互联网 发布时间:2015-01-20
本文导语: 现用Java做一个聊天室,文字显示区域用JTextPane,想往里面加一些 小图片,如笑脸。请问如何做到,最好有代码,谢谢!!! | JTextPane text=new JTextPane(); ImageIcon image; .... image=new ImageIcon(getImage(getCodeBase(),...
现用Java做一个聊天室,文字显示区域用JTextPane,想往里面加一些
小图片,如笑脸。请问如何做到,最好有代码,谢谢!!!
小图片,如笑脸。请问如何做到,最好有代码,谢谢!!!
|
JTextPane text=new JTextPane();
ImageIcon image;
....
image=new ImageIcon(getImage(getCodeBase(),"a.gif"));
text.insertIcon(image);
ImageIcon image;
....
image=new ImageIcon(getImage(getCodeBase(),"a.gif"));
text.insertIcon(image);