struts 2 다 중 파일 업로드 실현

본 논문 의 사례 는 struts 2 다 중 파일 업로드 의 구체 적 인 코드 를 공유 하여 여러분 께 참고 하 시기 바 랍 니 다.구체 적 인 내용 은 다음 과 같 습 니 다.
먼저 struts 2 의 개발 환경 을 구축 하고 struts 2 에 필요 한 최소 jar 패 키 지 를 가 져 옵 니 다.

새 upload.jsp 페이지 를 만 듭 니 다.폼 의 enctype 을 multipart/form-data 로 설정 해 야 합 니 다.

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
 <title>My JSP 'upload.jsp' starting page</title>
 
 <meta http-equiv="pragma" content="no-cache">
 <meta http-equiv="cache-control" content="no-cache">
 <meta http-equiv="expires" content="0"> 
 </head>
 
 <body>
 <s:fielderror name="fieldErrors"></s:fielderror>
 <s:form theme="simple" action="upload" enctype="multipart/form-data" method="post">
  file:<s:file name="file"></s:file>
  fileDesc:<s:textfield name="fileDesc[0]"></s:textfield>
  <br/><br/>
  file:<s:file name="file"></s:file>
  fileDesc:<s:textfield name="fileDesc[1]"></s:textfield>
  <br/><br/>
  file:<s:file name="file"></s:file>
  fileDesc:<s:textfield name="fileDesc[2]"></s:textfield>
  <s:submit></s:submit>
 </s:form>
 </body>
</html>
UploadAction 클래스 를 새로 만 듭 니 다.이 클래스 는 주로 세 개의 속성 이 있 고 이 세 가지 속성 에 대응 하 는 set get 방법 을 생 성 합 니 다.
[File Name]:업로드 할 파일 을 저장 합 니 다[File Name]ContentType:업로드 할 파일 형식 을 저장 합 니 다[File Name]FileName:업로드 한 파일 이름 저장

package cn.lfd.web.upload;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.List;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionSupport;
/*
 *                  List  ,struts                
 */
public class UploadAction extends ActionSupport {
 private static final long serialVersionUID = 1L;
 private List<File> file;
 private List<String> fileContentType;
 private List<String> fileFileName;
 private List<String> fileDesc;
 
 public List<File> getFile() {
 return file;
 }
 
 public void setFile(List<File> file) {
 this.file = file;
 }
 
 public List<String> getFileContentType() {
 return fileContentType;
 }
 
 public void setFileContentType(List<String> fileContentType) {
 this.fileContentType = fileContentType;
 }
 
 public List<String> getFileFileName() {
 return fileFileName;
 }
 
 public void setFileFileName(List<String> fileFileName) {
 this.fileFileName = fileFileName;
 }
 
 public List<String> getFileDesc() {
 return fileDesc;
 }
 
 public void setFileDesc(List<String> fileDesc) {
 this.fileDesc = fileDesc;
 }
 
 @Override
 public String execute() throws Exception {
 //      ,  IO             upload     
 for(int i=0;i<file.size();i++) {
 //          
 String dir = ServletActionContext.getServletContext().getRealPath("/upload/"+fileFileName.get(i));
 OutputStream out = new FileOutputStream(dir);
 InputStream in = new FileInputStream(file.get(i));
 byte[] flush = new byte[1024];
 int len = 0;
 while((len=in.read(flush))!=-1) {
 out.write(flush, 0, len);
 }
 in.close();
 out.close();
 }
 return "input";
 }
}
그리고 struts.xml 프로필 에 설정 합 니 다.

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
 "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
 "http://struts.apache.org/dtds/struts-2.0.dtd">
 
<struts>
 <constant name="struts.custom.i18n.resources" value="message"></constant>
 <package name="default" extends="struts-default">
 <interceptors>
 <interceptor-stack name="lfdstack">
 <interceptor-ref name="defaultStack">
  <param name="fileUpload.maximumSize">200000</param><!--              -->
  <param name="fileUpload.allowedTypes">text/html,text/xml</param><!--            -->
  <param name="fileUpload.allowedExtensions">txt,html,xml</param><!--             -->
 </interceptor-ref>
 </interceptor-stack>
 </interceptors>
 <default-interceptor-ref name="lfdstack"></default-interceptor-ref>
 <action name="upload" class="cn.lfd.web.upload.UploadAction">
 <result>/success.jsp</result>
 <result name="input">/upload.jsp</result>
 </action>
 </package>
</struts>
src 디 렉 터 리 에 message.properties 파일 맞 춤 형 오류 메 시 지 를 새로 만 듭 니 다.
struts.messages.error.uploading-파일 업로드 불가
  • struts.messages.error.file.too.large-파일 크기 초과
  • struts.messages.error.content.type.not.allowed-파일 형식 이 합 법 적 이지 않 습 니 다
  • struts.messages.error.file.extension.not.allowed-파일 확장자 가 합 법 적 이지 않 습 니 다

  • 그림%1 개의 캡 션 을 편 집 했 습 니 다.

    이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

    좋은 웹페이지 즐겨찾기