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-파일 업로드 불가
그림%1 개의 캡 션 을 편 집 했 습 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
apache struts2 취약점 검증이번에는 보안 캠프의 과제였던 apache struts2의 취약성에 대해 실제로 손을 움직여 실행해 보고 싶습니다. 환경 VirtualBox에서 브리지 어댑터 사용 호스트:macOS 10.12 게스트:ubuntu 1...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.