流星的永恒记忆
huqwstar53
全部博文(98)
Sun OS Sparc(0)
Sun OS i86(0)
基础知识(0)
Java Api(6)
SWT(2)
Swing(6)
InstallShield(2)
WindowsInstaller(1)
Vista(2)
串/并行通信(4)
HyperV(1)
IIS 教程(1)
windows常用指令(1)
linux调试(2)
linux下USB开发(3)
linux基础知识(7)
linux编译(4)
linux常用命令(3)
Linux环境进程间(13)
BSD Socket基础知(5)
C/C++面试精华(0)
VS2005(1)
VC(9)
C基础知识(1)
C++基础知识(10)
2010年(7)
2009年(15)
2007年(73)
2006年(3)
飘絮絮絮
丸喵喵
q4993115
Bsolar
cm201210
FGS_fgs
lihe1234
wibnmo
hanshi19
分类: Java
2007-06-08 14:02:50
import org.apache.struts.upload.FormFile; import java.io.InputStream; import java.io.OutputStream; import java.io.FileOutputStream; /* * 文件上传类! */ public class Upload { /** * @param path 要存储的路径 * @param file 文件 * @return */ public boolean up(String path, FormFile file)throws Exception { InputStream in = null; OutputStream out = null; try { in = file.getInputStream(); out = new FileOutputStream(path); int read = 0; byte[] buffer = new byte[8192]; while ((read = in.read(buffer, 0, 8192)) != -1) { out.write(buffer, 0, read); } out.close(); in.close(); return true; } catch (Exception e) { file.destroy(); e.printStackTrace(); return false; } } }
上一篇:java内嵌浏览器源码
下一篇:正则表达式1
chinaunix网友2008-12-04 21:44:19
,
登录 注册