File file = new File("E:\\a.tet");是生成文件。
FileInputStream fis;输入流用来读取文件,BufferedInputStream bis;是缓冲输入流,可以提高IO性能, 该类自带缓冲区, 对于读取大文件能提高程序性能。
FileOutputStream输出流,用来写入文件。
ServletContext s = ServletActionContext.getServletContext();
s.getRealPath("/")+文件名;获取服务器上传路径。其实也就是个路径,在本地环境中,就是tomcat之类服务器的路径。
FileOutputStream fos = new FileOutputStream(s.getRealPath("/")+"文件名.后缀");
BufferedOutputStream bos;缓冲输出流。
使用输入流输入字节至二进制的临时变量中,len是序列化,也就是写入字节的个数,0为要写到数组中的位置,然后使用输出流写到目录的文件中。
byte[] b = new byte[1024]; int len;
while((len = dis.read(b)) = -1){
bos.write(b,0,len);
}
然后刷新一下缓冲。
bos.flush();
关闭流
fis.close();
bis.close();
fos.close();
bos.close();