JSP(SSH)表单上传图片以及文本内容到后台保存,上传带图片的文章新闻等

FORM里设置了enctype="multipart/form-data"后用不能利用struts把数据传到后台action中,因为是流传输方式。

用fileupload工具包解决:
action中代码:
String root = ServletActionContext.getRequest().getRealPath("/upload");
		DiskFileItemFactory factory = new DiskFileItemFactory();  
		ServletFileUpload upload = new ServletFileUpload(factory);
		try {
			List items = upload.parseRequest(ServletActionContext.getRequest());
			Iterator it = items.iterator();
			while (it.hasNext()) {
				FileItem item = (FileItem) it.next();
				if (item.isFormField()) { // 如果是表单域
					if (item.getFieldName().equals("newstype")) {
						String newstype = item.getString("UTF-8");
						newstemp.setNewstype(Integer.parseInt(newstype));
					}
					if (item.getFieldName().equals("newsauthor")) {
						String newsauthor = item.getString("UTF-8");
						newstemp.setAuthor(newsauthor);
					}
					if (item.getFieldName().equals("newsisshowfront")) {
						String newsisshowfront = item.getString("UTF-8");
						newstemp.setIsshowfront(Integer.parseInt(newsisshowfront));
					}
					if (item.getFieldName().equals("newstitle")) {
						String newstitle = item.getString("UTF-8");
						newstemp.setNewstitle(newstitle);
					}
					if (item.getFieldName().equals("newscontent")) {
						String newscontent = item.getString("UTF-8");
						newstemp.setNewscontent(newscontent);
					}
				} else { // 如果是文件
					if (item.getName() != null && !item.getName().equals("")) {
						File file = new File(root,item.getName());
						newstemp.setNewsimages("upload/"+item.getName());
						item.write(file);
					}
				}
			}
			adminservice.addNews(newstemp);
		} catch (Exception e) {
			e.printStackTrace();
			System.err.println("上传文件不成功!");
		}
JSP代码:
<input type="text" class="input-200" name="newsauthor"/>
<s:file name="image" label="文件"></s:file>

也许用其他方式也可以解决这个问题,但个人觉得这种方式较简单。

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值