有关java上传和File以及FileInputStream的区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了有关java上传和File以及FileInputStream的区别相关的知识,希望对你有一定的参考价值。
1:PostUploadInfo的js是页面<ai:fileupload标签自动加载的AIFileUpload.js里的方法这里的ActionDocumentInfo.java注意与FtpUtilPro.java(它的一个upload方法有bug)的对比能
看出后者的bug.
从这个bug要看出File与FileInputStream的区别,File不属于流,它只是用来屏闭不同文件系统,用来统一
描述文件的实体BEAN,new File时给它传入文件名称或是路径,它就会去根据参数查找对应的文件属性然后封装
成实体。用来处理判断该路径是一个文件还是路径,文件或路径的权限,修改时间等等,路径的子路径list等等目录操作。
File不属于文件流,只能代表一个文件或是目录的路径名而已.
而FileInputStream关注的是文件的内容,是用来进行文件读写等操作的二进制流类。大多数情况下,构造FileInputStream
时传递一个File对象做参数,也可以直接传递String的文件路径。
这个容易混淆的问题在FTP时候很容易出现,因为客户端点击浏览本地文件后在上传时在服务器端如果直接把客户端的
文件名称拿到,然后用new File(“文件名称路径”),再用new InputStream(File)来上传到FTP的话,其实就是相当于服务器
端在服务器本地找File(“文件名称路径”),然后往FTP上传,这是错误的。我们希望的是上传客户端的文件,而不是
服务器端的文件,所以这里应该是直接用apache的FileItem.getInputStream的结果直接upload,如下:
InputStream fileIn = item.getInputStream();////如果直接写成这样new FileInputStream(filePath);就会出现在服务器本机找file上传的问题
//可以查看item.getInputStream()最后其实是从memoryOutputStream(内存里记忆的客户端文件流)来取流的句柄的。
以下是正确的实现
[code]
/**上传附件的时候调用
* @param request
* @param response
* @throws Exception
*/
public void doUpload(HttpServletRequest request, HttpServletResponse response) throws Exception
CustomProperty cp = CustomProperty.getInstance();
try
//调用apache控件上传文件,返回数组,第一个存放文件对象,第二个存放参数对象
Object obj[] = ApacheUploadTool.getUploadFileInfo(request);
List fileList = (List)obj[0];
Map paras = (Map)obj[1];
if(fileList == null || fileList.size()==0)
cp.set("MESSAGE","找不到上传的文件");
return;
String aVirtualFileName="";
String newId="";
String newFileName="";
String aFileType ="";
String docSize = "";
String editMode = HttpUtil.getParameter(request, "edit_mode");
String objectId = HttpUtil.getParameter(request, "OBJECT_ID");
String busiType = HttpUtil.getParameter(request, "BUSI_TYPE");
// 陈超调试修改添加的输出
// System.out.println("================"+editMode);
//保存附件信息
for(int i=0;i<fileList.size();i++)
FileItem item = (FileItem)fileList.get(i);
//获取文件流、文件名称
String fileName = fixFileName(item.getName());
IDocumentInfoSV idao = CommonService.getIDocumentInfoSV();
docSize = String.valueOf(item.getSize());
String codetype = String.valueOf(StaticValue.CFG_FTP_PATH_CODE);
String ftpPathName = BaseDataCodeAction.getCodeName(codetype, busiType);
if(null==ftpPathName||"".equals(ftpPathName))
throw new Exception("没有该业务对应的FTP路径配置!");
// 陈超调试的注释
// System.out.println("ftpPathName="+ftpPathName);
FtpUtil ftpUtil = new FtpUtil(ftpPathName);
// FtpUtilPro ftpUtil = new FtpUtilPro(ftpPathName);
// 陈超添加的调试输出
// System.out.println("item=="+item);
// System.out.println("item.getInputStream()=="+item.getInputStream());
InputStream fileIn = item.getInputStream();//new FileInputStream(filePath);//如果直接写成这样就会出现在服务器本机找file上传的问题
//可以查看item.getInputStream()最后其实是从memoryOutputStream(内存里记忆的客户端文件流)来取流的句柄的。
//获取新的文件名,判断是否存在
IBODocumentInfoValue[] retValues = CommonService.getIDocumentInfoSV().queryDocumentInfoList(Long.parseLong(busiType), Long.parseLong(objectId));
for(int j=0;j<retValues.length;j++)
String docName = retValues[j].getDocumentName();
if(fileName.equals(docName))
ExceptionUtil.throwBossException(83000015,new String[]fileName);
newFileName = fileName;
if(editMode.equals("addNew"))
// 陈超添加的调试输出
// ftpUtil.upload(fileName, fileIn,FtpUtil.BIN);
ftpUtil.upload(fileName, fileIn,FtpUtil.BIN);
else if (editMode.equals("modify"))
// System.out.println("================"+HttpUtil.getParameter(request, "DOCUMENT_ID"));
String oldId = HttpUtil.getParameter(request, "DOCUMENT_ID");
IBODocumentInfoValue acond = new BODocumentInfoBean();
acond.setDocumentId(Long.parseLong(oldId));
// 陈超更改查询STATE为1
acond.setState(1);
IBODocumentInfoValue[] beanValues = idao.getDocumentInfo(acond,"",null);
if(null == beanValues || beanValues.length==0)
throw new Exception("没有文档信息");
IBODocumentInfoValue beanValue = beanValues[0];
String oldFileName = beanValue.getDocumentName();
ftpUtil.upload(oldFileName, fileIn,FtpUtil.BIN);
if(i==0)
aVirtualFileName = newFileName;
else
aVirtualFileName = aVirtualFileName + "," + newFileName;
cp.set("IsOk","TRUE");
cp.set("MESSAGE", "附件"+aVirtualFileName+"上传成功!");
cp.set("VIRTUAL_FILE_NAME_LIST", aVirtualFileName);
cp.set("DOCUMENT_ID", newId);
cp.set("DOCUMENT_SIZE", docSize);
catch (Exception ex)
cp.set("IsOk","FALSE");
cp.set("MESSAGE",StaticValue.SYS_ERROR_INFO);
log.error(ex);
if(!ex.equals(""))
cp.set("MESSAGE",ExceptionUtil.getBossExceptionHint(ex));
finally
ApacheUploadTool.showFileUploadMsg(response,cp);
[/code]
附件是自己的ftp实现示例,和一些网上最简单的jsp上传的代码,也最能说明原理 参考技术A File不属于流,它只是用来屏闭不同文件系统,用来统一 描述文件的实体BEAN,new File时给它传入文件名称或是路径,它就会去根据参数查找对应的文件属性然后封装 成实体。用来处理判断该路径是一个文件还是路径,文件或路径的权限,修改时间等等,路径的子路径list等等目录操作。
File不属于文件流,只能代表一个文件或是目录的路径名而已.
而FileInputStream关注的是文件的内容,是用来进行文件读写等操作的二进制流类。大多数情况下,构造FileInputStream 时传递一个File对象做参数,也可以直接传递String的文件路径。
这个容易混淆的问题在FTP时候很容易出现,因为客户端点击浏览本地文件后在上传时在服务器端如果直接把客户端的 文件名称拿到,然后用new File(“文件名称路径”),再用new InputStream(File)来上传到FTP的话,其实就是相当于服务器 端在服务器本地找File(“文件名称路径”),然后往FTP上传,这是错误的。我们希望的是上传客户端的文件,而不是 服务器端的文件,所以这里应该是直接用apache的FileItem.getInputStream的结果直接upload,如下: InputStream fileIn = item.getInputStream();////如果直接写成这样new FileInputStream(filePath);就会出现在服务器本机找file上传的问题 //可以查看item.getInputStream()最后其实是从memoryOutputStream(内存里记忆的客户端文件流)来取流的句柄的。 参考技术B File是文件类,而FileInputStream是文件流,你可以用FileInputStream得到File的输入流,
java web图片上传和文件上传
图片上传和文件上传本质上是一样的,图片本身也是文件。文件上传就是将图片上传到服务器,方式虽然有很多,但底层的实现都是文件的读写操作。
注意事项
1.form表单一定要写属性enctype="multipart/form-data"
2.为了能保证文件能上传成功file控件的name属性值要和你提交的控制层变量名一致,
例如空间名是file那么你要在后台这样定义
private File file; //file控件名
private String fileContentType;//图片类型
private String fileFileName; //文件名
1.jsp页面
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta http-equiv="pragma" content="no-cache" /> <base target="_self"> <title>文件上传</title> </head> <body> <form method="post" action="" enctype="multipart/form-data"> <input type="file" name="file" value="file"> <input type="submit" value="确定"> </form> </body> </html>
1.页面数据需要提交的Controller
package com.cpsec.tang.chemical.action; import java.io.File; import java.io.IOException; import java.util.Random; import javax.annotation.Resource; import javax.servlet.http.HttpServletRequest; import org.apache.commons.io.FileUtils; import org.apache.struts2.ServletActionContext; import org.springframework.stereotype.Controller; import com.cpsec.tang.chemical.biz.LunboBiz; import com.cpsec.tang.chemical.entity.Image; import com.opensymphony.xwork2.ActionSupport; @Controller("lunboAction") public class LunboAction extends ActionSupport { /** * */ private static final long serialVersionUID = 1L; @Resource(name="lunboBiz") private LunboBiz lunboBiz; private Image image; private File file; //file控件名 private String fileContentType;//图片类型 private String fileFileName; //文件名 private Integer number; public String findImage(){ image=lunboBiz.findImage(); return SUCCESS; } public String alterImage(){ image=lunboBiz.findImage(); return SUCCESS; } public String alterImage1(){ HttpServletRequest request = ServletActionContext.getRequest(); String root = request.getRealPath("/upload");//图片要上传到的服务器路径 String names[]=fileFileName.split("\\."); String fileName=""; if(names.length>=1){ fileName=getRandomString(20)+"."+names[names.length-1]; } String picPath="upload/"+fileName;//图片保存到数据库的路径 File file1=new File(root); try { FileUtils.copyFile(file, new File(file1,fileName)); } } catch (IOException e) { e.printStackTrace(); } return SUCCESS; } /*获取一条随机字符串*/ public String getRandomString(int length) { //length表示生成字符串的长度 String base = "abcdefghijklmnopqrstuvwxyz0123456789"; Random random = new Random(); StringBuffer sb = new StringBuffer(); for (int i = 0; i < length; i++) { int number = random.nextInt(base.length()); sb.append(base.charAt(number)); } return sb.toString(); } }
这是通过复制的方式上传文件,还有其他方式
方法二
@Controller("contractAction") public class ContractAction extends ActionSupport { private final static String UPLOADDIR = "/files";//文件上传的路径,在webContent下建立 private File file; //input控件名一定为file //上传文件名集合 private String fileFileName; //上传文件内容类型集合 private String fileContentType; private String filename; public String upload() throws FileNotFoundException, IOException{ String path=uploadFile();//文件保存数据库的路径 return SUCCESS; } //执行上传功能 @SuppressWarnings("deprecation") public String uploadFile() throws FileNotFoundException, IOException { try { InputStream in = new FileInputStream(file); String dir = ServletActionContext.getRequest().getRealPath(UPLOADDIR); File fileLocation = new File(dir); //此处也可以在应用根目录手动建立目标上传目录 if(!fileLocation.exists()){ boolean isCreated = fileLocation.mkdir(); if(!isCreated) { //目标上传目录创建失败,可做其他处理,例如抛出自定义异常等,一般应该不会出现这种情况。 return null; } } // this.setFileFileName(getRandomString(20)); String[] Name=this.getFileFileName().split("\\."); String fileName=getRandomString(20)+"."+Name[Name.length-1]; this.setFileFileName(fileName); System.out.println(fileName); File uploadFile = new File(dir, fileName); OutputStream out = new FileOutputStream(uploadFile); byte[] buffer = new byte[1024 * 1024]; int length; while ((length = in.read(buffer)) > 0) { out.write(buffer, 0, length); } in.close(); out.close(); return UPLOADDIR.substring(1)+"\\"+fileFileName; } catch (FileNotFoundException ex) { return null; } catch (IOException ex) { return null; } } public static String getRandomString(int length){ String str="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; Random random=new Random(); StringBuffer sb=new StringBuffer(); for(int i=0;i<length;i++){ int number=random.nextInt(62); sb.append(str.charAt(number)); } return sb.toString(); } }
除了单图上传还有多图上传,原理都是一样的
package com.cpsec.tang.chemical.action; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.List; import javax.servlet.http.HttpServletRequest; import org.apache.struts2.ServletActionContext; import com.opensymphony.xwork2.ActionSupport; /** * 多文件上传 */ public class FilesUploadAction extends ActionSupport { //上传文件存放路径 private final static String UPLOADDIR = "/upload"; //上传文件集合 private List<File> file; //上传文件名集合 private List<String> fileFileName; //上传文件内容类型集合 private List<String> fileContentType; public List<File> getFile() { return file; } public void setFile(List<File> file) { this.file = file; } public List<String> getFileFileName() { return fileFileName; } public void setFileFileName(List<String> fileFileName) { this.fileFileName = fileFileName; } public List<String> getFileContentType() { return fileContentType; } public void setFileContentType(List<String> fileContentType) { this.fileContentType = fileContentType; } public String uploadform() throws Exception { HttpServletRequest request = ServletActionContext.getRequest(); String webpath=null;//上传路径 for (int i = 0; i < file.size(); i++) { //循环上传每个文件 uploadFile(i); webpath="upload/"+this.getFileFileName().get(i); } return "SUCCESS"; } //执行上传功能 private String uploadFile(int i) throws FileNotFoundException, IOException { try { InputStream in = new FileInputStream(file.get(i)); String dir = ServletActionContext.getRequest().getRealPath(UPLOADDIR); File fileLocation = new File(dir); //此处也可以在应用根目录手动建立目标上传目录 if(!fileLocation.exists()){ boolean isCreated = fileLocation.mkdir(); if(!isCreated) { //目标上传目录创建失败,可做其他处理,例如抛出自定义异常等,一般应该不会出现这种情况。 return null; } } String fileName=this.getFileFileName().get(i); File uploadFile = new File(dir, fileName); OutputStream out = new FileOutputStream(uploadFile); byte[] buffer = new byte[1024 * 1024]; int length; while ((length = in.read(buffer)) > 0) { out.write(buffer, 0, length); } in.close(); out.close(); return uploadFile.toString(); } catch (FileNotFoundException ex) { return null; } catch (IOException ex) { return null; } } }
以上是关于有关java上传和File以及FileInputStream的区别的主要内容,如果未能解决你的问题,请参考以下文章