input type=file上传图片后服务器如何将其保存到指定文件夹 10
网页中有一个form,method=“post”,action="imgUploadServlet"<inputtype="file"name="myimg"><inpu...
网页中有一个form,method=“post”,action="imgUploadServlet"
<input type="file" name="myimg">
<input type="submit" name="submit">
上传图片到服务器之后,服务器怎么样将该图片取出来并保存到指定文件夹中???
我没有struts组件,下了一个smartupload组件,但MyEclipse总报错,说com.jspsmart cannot be resolved as a type 展开
<input type="file" name="myimg">
<input type="submit" name="submit">
上传图片到服务器之后,服务器怎么样将该图片取出来并保存到指定文件夹中???
我没有struts组件,下了一个smartupload组件,但MyEclipse总报错,说com.jspsmart cannot be resolved as a type 展开
1个回答
展开全部
filename即为文件的位置及名字,如想保护在D:/1.jpg,
则filename="D:/1.jpg"
myfile是org.apache.struts.upload.FormFile对象
FileOutputStream fos = new FileOutputStream(filename);
fos.write(myfile.getFileData());
fos.flush();
fos.close();
应该是那个smartupload的版本和你的jdk版本不一致。或者是没有导入相应的类
则filename="D:/1.jpg"
myfile是org.apache.struts.upload.FormFile对象
FileOutputStream fos = new FileOutputStream(filename);
fos.write(myfile.getFileData());
fos.flush();
fos.close();
应该是那个smartupload的版本和你的jdk版本不一致。或者是没有导入相应的类
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询