在jsp中怎么上传张图片到项目的image文件夹下。(我用的是strtus2哦)
先从页面上接收到图片这是Action类publicclassRecordsActionextendsActionSupport{privateFilefile;priva...
先从页面上接收到图片这是Action类public class RecordsAction extends ActionSupport {private File file;private String fileContentType;private String fileFileName;//生成get和set//上传方法public void upload(){InputStream is=new FileInputStream(file);
OutputStream os=new FileOutputStream(filePath);/////重点是这里的“filePath“这个路径该怎么写//////如果是这样的话它是把他上传到服务器而不是上传到我这个项目里的image文件夹下ServletContext application = ServletActionContext.getServletContext();
///// String filePath=application.getRealPath("/");
byte[] bytes=new byte[8192];
int count = 0;
while((count=is.read(bytes))>0){
os.write(bytes,0,count);
}
is.close();
os.close();}} 项目结构WebContent--image--js--css--page我要的就是把上传的图片保存到image里面只要是用struts2上传能保存到image文件夹下的就行其它不限定回答好加分 展开
OutputStream os=new FileOutputStream(filePath);/////重点是这里的“filePath“这个路径该怎么写//////如果是这样的话它是把他上传到服务器而不是上传到我这个项目里的image文件夹下ServletContext application = ServletActionContext.getServletContext();
///// String filePath=application.getRealPath("/");
byte[] bytes=new byte[8192];
int count = 0;
while((count=is.read(bytes))>0){
os.write(bytes,0,count);
}
is.close();
os.close();}} 项目结构WebContent--image--js--css--page我要的就是把上传的图片保存到image里面只要是用struts2上传能保存到image文件夹下的就行其它不限定回答好加分 展开
1个回答
2013-08-16
展开全部
String targetDirectory = context.getRealPath("/image");
File target = new File(targetDirectory, fileFileName);
FileUtils.copyFile(file, target);
File target = new File(targetDirectory, fileFileName);
FileUtils.copyFile(file, target);
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |