急求JTextArea图片问题,热心人请帮忙~~

时间:2008-08-19 15:09:26   来源:论坛整理  作者:  编辑:chinaitzhe
我在做个聊天程序,想实现发送表情功能,现在我想根据接到的文件名,从本地取出文件,并显示在JTextArea 里,那图片该怎么显示啊?在线等 我的代码是这样的
if(msg.startsWith("x0")&&msg.endsWith("gif"))//判断是不是表情图片
{
File _file = new File(msg); //根据文件名读入文件
Image src = javax.imageio.ImageIO.read(_file);
int wideth=src.getWidth(null); //得到源图宽
int height=src.getHeight(null); //得到源图长

BufferedImage tag = new BufferedImage(wideth,height,BufferedImage.TYPE_INT_RGB);
Graphics g = tag.getGraphics();
g.drawImage(src,0,0,wideth,height,null);
下面该怎么办啊?请说详细点 马上送分!
网友回复:用JTextPane
http://cwq.jsp-tech.cn/2007/06/jtextpane_14.html
网友回复:有谁能说详细点吗?楼上那位的方法为不太看得懂~~~~~~~
网友回复:没人知道了吗?
关键字:热心,问题,图片,

文章评论

共有 0 位网友发表了评论 此处只显示部分留言 点击查看完整评论页面