この記事では、指定したフォルダーに画像をアップロードして画像を表示する Java Struts の機能を主に紹介します。
前回のサーブレットを使用した画像のアップロードに続き、今回は MVC ベースの Struts フレームワークを使用します。は、サーブレットと簡易 JSP ページ ジャンプをカプセル化するために使用されます。
JSP アップロード ページ
アップロードするときは、必ず enctype="multipart/form-data"
をフォームに追加してください。これは、送信されたデータがバイナリenctype="multipart/form-data"
,表示提交的数据时二进制的
并且必须是method="post"
である必要があることを示しますMethod= "post"
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%> <%@taglib prefix="s" uri="/struts-tags"%> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <s:form action="login" method="post" enctype="multipart/form-data"> <s:file name="img" label="头像" /> <s:submit value="上传" /> </s:form> <!-- <form action="login" method="post" enctype="multipart/form-data"> 头像:<input type="file" name="img"></input> <input type="submit" values="上传"></input> </form> --> </body> </html>struts.xml設定(Mavenプロジェクトはリソースに配置されます)
<?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.multipart.maxSize" value="20480000"/> 设置文件上传最大值 <package name="struts2" extends="struts-default"> <action name="login" class="com.controller.TestStruts" method="logintest"> <result name="fail">/fail.jsp</result> <result name="success">/success.jsp</result> </action> </package> </struts>TestStruts.javaコントロールクラス必ず3つの属性を指定してください
File img; String imgFileName; String imgContentType;次に、これら 3 つのプロパティの getter setter メソッドを提供します
package com.controller; import java.io.File; import java.io.IOException; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.io.FileUtils; import org.apache.struts2.ServletActionContext; import com.opensymphony.xwork2.ActionContext; import com.opensymphony.xwork2.ActionSupport; public class TestStruts extends ActionSupport{ private File img; private String imgFileName; private String imgContentType; public File getImg(){ return img; } public String getimgFileName(){ return imgFileName; } public String getImgContentType(){ return imgContentType; } public void setImg(File img){ this.img = img; } public void setImgFileName(String imgFileName){ this.imgFileName = imgFileName; } public void setImgFileContentType(String imgContentType){ this.imgContentType = imgContentType; } @SuppressWarnings("unchecked") public String logintest() throws IOException{ Map p = ActionContext.getContext().getSession(); p.put("imgFileName", imgFileName); File f = new File("D://imagebystruts"); if (!f.exists()) { f.mkdir(); } FileUtils.copyFile(img, new File(f, imgFileName)); return "success"; } }サーバーの仮想パスを構成します。
以上がStrutsの画像を指定フォルダにアップロードし、Javaで画像を表示する例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。