在applet中向action或者servlet写Object对象的时候,可以通过URLConnection来操作 applet端: private URLConnection getConnect1(String urlstring) throws Exception { UserBean u = new UserBean(); URL url = new URL(urlstring); URLConnection urlConn = null; ObjectOutputStream printout; urlConn = url.openConnect ...
2007-11-27

上传图片并生成缩略图

关键字: 上传图片并生成缩略图
最近公司说要在portal中添加一个上传图片并生成缩略图的方法,试了很久,终于搞定了;写下点心得吧,使大家少走弯路; 首先做之前,google了一下,发现很多生产缩略图的方法: BufferedImage img = ImageIO.read(file); int h = img.getHeight(); int w = img.getWidth(); if(h>=96 && w >=96){ int nw = 96; int nh = (nw * h) / w; if(nh> ...
waitmannee
搜索本博客
博客分类
最近加入圈子
最新评论