자바 프레임 워 크 Struts 2 이미지 업로드 기능 구현

Struts 2 프레임 워 크 는 파일 업로드 처리 에 내장 지원 을 제공 합 니 다."HTML 에서 폼 기반 파일 업로드"를 사용 합 니 다.파일 을 업로드 할 때 임시 디 렉 터 리 에 저장 되 며,데 이 터 를 잃 어 버 리 지 않도록 Action 클래스 에서 처리 하거나 영구적 인 디 렉 터 리 로 이동 해 야 합 니 다.서버 가 적당 한 위치 에 보안 정책 이 있 을 수 있 습 니 다.임시 디 렉 터 리 를 제외 한 디 렉 터 리 에 쓰 는 것 을 금지 하고 이 디 렉 터 리 는 웹 프로그램 에 속 합 니 다.
미리 정 의 된 파일 업로드 차단 기 를 통 해 Struts 의 파일 업로드 가 가능 합 니 다.이 차단 기 는 org.apache.struts 2.interceptor.FileUploadInterceptor 류 에서 사용 할 수 있 으 며 default Stack 의 일부분 입 니 다.
보기 파일 만 들 기
선택 한 파일 을 탐색 하고 업로드 할 보 기 를 만 듭 니 다.따라서 간단 한 HTML 업로드 폼 이 있 는 index.jsp 를 만 듭 니 다.사용자 가 파일 을 업로드 할 수 있 도록 합 니 다.(폼 의 인 코딩 형식 은 multipart/form-data 로 설정 합 니 다)

<%--
 Created by IntelliJ IDEA.
 User: yzjxiaoyue
 Date: 2017/7/28
 Time: 19:11
 To change this template use File | Settings | File Templates.
--%>
<%@ page language="java" contentType="text/html; charset=utf-8"
     pageEncoding="utf-8"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
  <title>File Upload</title>
</head>
<body>
<form action="upload" method="post" enctype="multipart/form-data">
  <label for="myFile">Upload your file</label>
  <input type="file" name="myFile" id="myFile"/>
  <input type="submit" value="Upload"/>
</form>
</body>
</html>
이후 success.jsp 페이지 만 들 기:

<%--
 Created by IntelliJ IDEA.
 User: yzjxiaoyue
 Date: 2017/7/28
 Time: 19:14
 To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
  <title>File Upload Success</title>
</head>
<body>
You have successfully uploaded <s:property value="myFileFileName"/>
</body>
</html>
error.jsp 페이지 만 들 기

<%--
 Created by IntelliJ IDEA.
 User: yzjxiaoyue
 Date: 2017/7/28
 Time: 20:05
 To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
  <title>File Upload Error</title>
</head>
<body>
There has been an error in uploading the file.
</body>
</html>
액 션 클래스 만 들 기
다음은 uploadFile.자바 라 는 자바 류 를 만 듭 니 다.파일 을 업로드 하고 이 파일 을 안전 한 위치 에 저장 합 니 다.

package com.action;
 
import com.opensymphony.xwork2.ActionSupport;
import org.apache.commons.io.FileUtils;
 
import java.io.File;
import java.io.IOException;
public class uploadFile extends ActionSupport{
  private File myFile;
 
  public File getMyFile() {
    return myFile;
  }
  public void setMyFile(File myFile) {
    this.myFile = myFile;
  }
 
  private String myFileContentType;
 
  private String myFileFileName;
 
  private String destPath;
 
  public String execute()
  {
     /* Copy file to a safe location */
    destPath = "E:\\Program Files\\apache-tomcat-9.0.0\\apache-tomcat-9.0.0.M22\\work\\";
    try{
      System.out.println("Src File name: " + myFile);
      System.out.println("Dst File name: " + myFileFileName);
      File destFile = new File(destPath, myFileFileName);
      FileUtils.copyFile(myFile, destFile);
    }catch(IOException e){
      e.printStackTrace();
      return ERROR;
    }
    return SUCCESS;
  }
 
 
  public String getMyFileContentType() {
    return myFileContentType;
  }
  public void setMyFileContentType(String myFileContentType) {
    this.myFileContentType = myFileContentType;
  }
  public String getMyFileFileName() {
    return myFileFileName;
  }
  public void setMyFileFileName(String myFileFileName) {
    this.myFileFileName = myFileFileName;
  }
}
프로필

<?xml version="1.0" encoding="UTF-8"?>
 
<!DOCTYPE struts PUBLIC
    "-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
    "http://struts.apache.org/dtds/struts-2.3.dtd">
 
<struts>
  <constant name="struts.devMode" value="true"/>
  <constant name="struts.multipart.maxSize" value="10000000"/>
 
  <constant name="struts.multipart.saveDir" value="/tmp"/>
  <constant name="struts.custom.i18n.resources" value="struts"></constant>
  <package name="default" namespace="/" extends="struts-default">
    <action name="upload" class="com.action.uploadFile">
      <!--<interceptor-ref name="basicStack"/>-->
      <interceptor-ref name="defaultStack"/>
      <interceptor-ref name="fileUpload">
        <param name="allowedTypes">image/jpeg,image/jpg,image/gif</param>
      </interceptor-ref>
      <result name="success">/success.jsp</result>
      <result name="error">/error.jsp</result>
    </action>
  </package>
</struts>

인터페이스 캡 처


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

좋은 웹페이지 즐겨찾기