AjaxはSpringに合わせてファイルアップロード機能コードを実現します。
23676 ワード
プロジェクトが必要なので、画像をサーバーにアップロードできるウェブフォームページを開発します。
一、需要
Webフォームページは、フォームを介して画像やその他のテキスト情報をアップロードすることができます。
二、画像アップロードの流れ
前にこのようなページを作ったことがありません。資料を調べます。よくあるやり方を発見しました。まず画像をサーバー端のファイルディレクトリにアップロードして、サーバーはフロントに画像の保存経路を返します。その後、フロントは、画像格納経路および他のフォーム情報をサーバに提出し、すべてのフォーム情報をデータベースに格納する。
三、方法
プロジェクトが必要なので、ここで二つの画像のアップロード方法を紹介します。一つはajaxを使って一つの画像を直接アップロードします。二つ目はフロントで画像を小さいファイルにカットしてから、ajaxを使ってそれぞれの画像をサーバーにアップロードして、サーバーはファイルのつなぎ合わせを実現します。方法2は大きいファイルのアップロードに適しています。それぞれ二つの方法を紹介します。
方法1:直接アップロード
1)ページ
一、需要
Webフォームページは、フォームを介して画像やその他のテキスト情報をアップロードすることができます。
二、画像アップロードの流れ
前にこのようなページを作ったことがありません。資料を調べます。よくあるやり方を発見しました。まず画像をサーバー端のファイルディレクトリにアップロードして、サーバーはフロントに画像の保存経路を返します。その後、フロントは、画像格納経路および他のフォーム情報をサーバに提出し、すべてのフォーム情報をデータベースに格納する。
三、方法
プロジェクトが必要なので、ここで二つの画像のアップロード方法を紹介します。一つはajaxを使って一つの画像を直接アップロードします。二つ目はフロントで画像を小さいファイルにカットしてから、ajaxを使ってそれぞれの画像をサーバーにアップロードして、サーバーはファイルのつなぎ合わせを実現します。方法2は大きいファイルのアップロードに適しています。それぞれ二つの方法を紹介します。
方法1:直接アップロード
1)ページ
<pre name="code" class="html"><!DOCTYPE html>
<head></head>
<body>
<form id="uploadForm" action="/PicSubmit/form" method="post" enctype="multipart/form-data" onsubmit="return submit_check()" class="bootstrap-frm" ></pre><pre name="code" class="html"><input id = "sid" type = "text" name="name" /></pre><pre name="code" class="html"><pre name="code" class="html"><input id = "fileImage" type = "file" name="filename" /></pre><pre name="code" class="html"><input id = "addressid" type = "hidden" name="address" /></pre><pre name="code" class="html"><input id="ajaxsub" type="button" class="button" value=" " onclick="fileUpload()<span style="font-family: Arial, Helvetica, sans-serif;">" /> </span></pre><pre name="code" class="html"><input type="submit" class="button" value=" " />
<input type="reset" class="button" value=" " />
</pre></body></html><p></p>
<pre></pre>
<br>
<pre></pre>
,form enctype “multipart/form-data”, Html5 , , <input type="file"> , multiple , :<input type="file" id= “fileImage” multiple />。<br>
<br>
<br>
<p></p>
<p>2 js</p>
<p>(1)js ajax ajaxfileupload.js 。 , ajax 。 , ajaxfileupload.js 。 , ajaxfileupload.js , , js , 。</p>
<p></p><pre name="code" class="javascript">// JavaScript Document</pre><pre name="code" class="javascript">// ajax file uplaod
jQuery.extend({
createUploadIframe: function(id, uri)
{
//create frame
var frameId = 'jUploadFrame' + id;
if(window.ActiveXObject) {
var io = document.createElement('<iframe id="' + frameId + '" name="' + frameId + '" />');
if(typeof uri== 'boolean'){
io.src = 'javascript:false';
}
else if(typeof uri== 'string'){
io.src = uri;
}
}
else {
var io = document.createElement('iframe');
io.id = frameId;
io.name = frameId;
}
io.style.position = 'absolute';
io.style.top = '-1000px';
io.style.left = '-1000px';
document.body.appendChild(io);
return io;
},
createUploadForm: function(id, fileElementId)
{
//create form
var formId = 'jUploadForm' + id;
var fileId = 'jUploadFile' + id;
var form = jQuery('<form action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data"></form>');
var oldElement = jQuery('#' + fileElementId);
var newElement = jQuery(oldElement).clone();
jQuery(oldElement).attr('id', fileId);
jQuery(oldElement).before(newElement);
jQuery(oldElement).appendTo(form);
//set attributes
jQuery(form).css('position', 'absolute');
jQuery(form).css('top', '-1200px');
jQuery(form).css('left', '-1200px');
jQuery(form).appendTo('body');
return form;
},
ajaxFileUpload: function(s) {
// TODO introduce global settings, allowing the client to modify them for all requests, not only timeout
s = jQuery.extend({}, jQuery.ajaxSettings, s);
var id = s.fileElementId;
var form = jQuery.createUploadForm(id, s.fileElementId);
var io = jQuery.createUploadIframe(id, s.secureuri);
var frameId = 'jUploadFrame' + id;
var formId = 'jUploadForm' + id;
if( s.global && ! jQuery.active++ )
{
// Watch for a new set of requests
jQuery.event.trigger( "ajaxStart" );
}
var requestDone = false;
// Create the request object
var xml = {};
if( s.global )
{
jQuery.event.trigger("ajaxSend", [xml, s]);
}
var uploadCallback = function(isTimeout)
{
// Wait for a response to come back
var io = document.getElementById(frameId);
try
{
if(io.contentWindow)
{
xml.responseText = io.contentWindow.document.body?io.contentWindow.document.body.innerHTML:null;
xml.responseXML = io.contentWindow.document.XMLDocument?io.contentWindow.document.XMLDocument:io.contentWindow.document;
}else if(io.contentDocument)
{
xml.responseText = io.contentDocument.document.body?io.contentDocument.document.body.innerHTML:null;
xml.responseXML = io.contentDocument.document.XMLDocument?io.contentDocument.document.XMLDocument:io.contentDocument.document;
}
}catch(e)
{
jQuery.handleError(s, xml, null, e);
}
if( xml || isTimeout == "timeout")
{
requestDone = true;
var status;
try {
status = isTimeout != "timeout" ? "success" : "error";
// Make sure that the request was successful or notmodified
if( status != "error" )
{
// process the data (runs the xml through httpData regardless of callback)
var data = jQuery.uploadHttpData( xml, s.dataType );
if( s.success )
{
// ifa local callback was specified, fire it and pass it the data
s.success( data, status );
};
if( s.global )
{
// Fire the global callback
jQuery.event.trigger( "ajaxSuccess", [xml, s] );
};
} else
{
jQuery.handleError(s, xml, status);
}
} catch(e)
{
status = "error";
jQuery.handleError(s, xml, status, e);
};
if( s.global )
{
// The request was completed
jQuery.event.trigger( "ajaxComplete", [xml, s] );
};
// Handle the global AJAX counter
if(s.global && ! --jQuery.active)
{
jQuery.event.trigger("ajaxStop");
};
if(s.complete)
{
s.complete(xml, status);
} ;
jQuery(io).unbind();
setTimeout(function()
{ try
{
jQuery(io).remove();
jQuery(form).remove();
} catch(e)
{
jQuery.handleError(s, xml, null, e);
}
}, 100);
xml = null;
};
}
// Timeout checker
if( s.timeout > 0 )
{
setTimeout(function(){
if( !requestDone )
{
// Check to see ifthe request is still happening
uploadCallback( "timeout" );
}
}, s.timeout);
}
try
{
var form = jQuery('#' + formId);
jQuery(form).attr('action', s.url);
jQuery(form).attr('method', 'POST');
jQuery(form).attr('target', frameId);
if(form.encoding)
{
form.encoding = 'multipart/form-data';
}
else
{
form.enctype = 'multipart/form-data';
}
jQuery(form).submit();
} catch(e)
{
jQuery.handleError(s, xml, null, e);
}
if(window.attachEvent){
document.getElementById(frameId).attachEvent('onload', uploadCallback);
}
else{
document.getElementById(frameId).addEventListener('load', uploadCallback, false);
}
return {abort: function () {}};
},
uploadHttpData: function( r, type ) {
var data = !type;
data = type == "xml" || data ? r.responseXML : r.responseText;
// ifthe type is "script", eval it in global context
if( type == "script" )
{
jQuery.globalEval( data );
}
// Get the JavaScript object, ifJSON is used.
if( type == "json" )
{
eval( "data = " + data );
}
// evaluate scripts within html
if( type == "html" )
{
jQuery("<div>").html(data).evalScripts();
}
return data;
},
handleError: function( s, xhr, status, e ) {
// If a local callback was specified, fire it
if ( s.error ) {
s.error.call( s.context || s, xhr, status, e );
}
// Fire the global callback
if ( s.global ) {
(s.context ? jQuery(s.context) : jQuery.event).trigger( "ajaxError", [xhr, s, e] );
}
}
});</pre><p></p>
<p><br>
</p>
(2)その後ajaxfileupload.jsライブラリを呼び出し、画像アップロードスクリプトを作成します。ここではajaxfileuplod_と名付けられています。implement.js
<p></p><pre name="code" class="javascript">function fileUpload() {
var inputObject = $("#fileImage").get(0);
if(inputObject.value == "")
{
alert(" ");
return false;
}
$.ajaxFileUpload({
url: '/PicSubmit/pic', //
secureuri: false, // , false
type: 'post',
fileElementId: 'fileImage', // ID
dataType: 'text', // json
enctype:'multipart/form-data',//
success: function (data, status) //
{
data=decodeURI(data);// urlencode , 。
var address = JSON.parse(data);
for(var i=0;i<address.length;i++){
ajaxfile_onSuccess(address[i]); // success , , </pre><pre name="code" class="javascript"><span style="white-space:pre"> </span>//hiden value , writeHide
}
},
complete: function(xmlHttpRequest)
{<span style="white-space:pre"> </span>// html , , ajax , file , ,</pre><pre name="code" class="javascript"><span style="white-space:pre"> </span>// 。
inputObject.replaceWith('<input type="file" id="fileImage" name="fileImage" />');
},
error: function (data, status, e)//
{
//alert(" ");
}
})
}</pre><pre name="code" class="javascript"></pre><pre name="code" class="javascript">function writeHide(data){
<span style="white-space:pre"> </span>if($("#addressid").get(0).value == "")
<span style="white-space:pre"> </span>{
<span style="white-space:pre"> </span>$("#addressid").get(0).value = data.newName;
<span style="white-space:pre"> </span>}
<span style="white-space:pre"> </span>else
<span style="white-space:pre"> </span>{
<span style="white-space:pre"> </span>$("#addressid").get(0).value = $("#addressid").get(0).value+","+data.newName;
<span style="white-space:pre"> </span>}
}
</pre><p></p>
<p>3 spring.</p>
<p> , 。 spring 。</p>
<p> springMVC :viewspace-servlet.xml</p>
<p></p><pre name="code" class="html"><?xml version="1.0" encoding="UTF-8" ?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd">
<!-- -->
<mvc:resources mapping="/js/**" location="/js/" />
<mvc:resources mapping="/css/**" location="/css/" />
<mvc:resources mapping="/image/**" location="/image/" />
<!-- web , Spring -->
<context:component-scan base-package="web"/>
<bean id="defaultAnnotationHandlerMapping"
class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" />
<bean id="annotationMethodHandlerAdapter"
class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter" />
<!-- , ModelAndView -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:viewClass="org.springframework.web.servlet.view.JstlView"
p:prefix="/WEB-INF/jsp/"
p:suffix=".jsp"/>
<!-- springMVC -->
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!-- 1MB -->
<property name="maxUploadSize" value="10485760"/>
<!-- -->
<property name="defaultEncoding" value="UTF-8" />
<!-- -->
<property name="resolveLazily" value="true" />
</bean>
<!-- SpringMVC , org.springframework.web.multipart.MaxUploadSizeExceededException -->
<!-- SpringMVC , Controller -->
<bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver" >
<property name="exceptionMappings">
<props>
<!-- MaxUploadSizeExceededException , /WEB-INF/jsp/error_toobig.jsp -->
<prop key="org.springframework.web.multipart.MaxUploadSizeExceededException">error_fileupload</prop>
</props>
</property>
</bean>
</beans></pre> , “org.springframework.web.multipart.commons.CommonsMultipartResolver” , 。<p></p>
<p><br>
</p>
<p> , web.xml :</p>
<p></p><pre name="code" class="html"><?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>viewspace</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>viewspace</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- -->
<filter>
<filter-name>characterEncodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</web-app></pre><p></p>
<p><br>
</p>
次にポイントとなりますが、Controllerでは、次のようにフロントで着てきた書類を受け取ります。br/>
<pre name="code" class="java"> @RequestMapping(value="/pic")
@ResponseBody
public String submitPic(@RequestParam(value = "filename",required = false) MultipartFile[] fileImage,
HttpServletRequest request){
if(fileImage == null){
return "[]";
}
return picSaveService.savePic(fileImage);
}</pre><br>
なお、フロントエンドhtmlのinputタグにmultiple属性が使用されている場合には、ラベルが複数の画像をアップロードすることをサポートしていることを示し、controllerのパラメータリストには、ファイルのタイプはMultipartFile[]を使用し、逆にmultiple属性を使用していない場合には、アップロードされた画像を示すため、controlerはMultiphleタイプを使用して受信する。
<p><br>
</p><p> , , , :</p>
<p></p><pre name="code" class="java"> public String savePic(MultipartFile[] fileImage){
//
String oldName = "";
String newName = "";
String extension = "";
//
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS");
//
List<PicConfirmData> resultList = new ArrayList<PicConfirmData>();
//
String path = Parameters.getInstance().getDatabaseProps().getProperty("pic_save_dir");
// path
for(int i=0;i<fileImage.length;i++){
System.out.println(fileImage[i].getOriginalFilename());
oldName = fileImage[i].getOriginalFilename();
extension = oldName.substring(oldName.lastIndexOf("."));
newName = sdf.format(new Date())+extension;
File target = new File(path,newName);
if(!target.exists()){
target.mkdirs();
}
try {
fileImage[i].transferTo(target);
} catch (IllegalStateException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
//
PicConfirmData pic = null;
try {
// , ,
//pic = new PicConfirmData(URLEncoder.encode(oldName, "utf-8"), path+newName);
pic = new PicConfirmData(1,URLEncoder.encode(oldName, "utf-8"), newName);
resultList.add(pic);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
return ToolJson.getJsonFromPicConfirmData(resultList);
}</pre> , “ ” , hiden ,hiden , hiden , 。<br>
<br>
<p></p>
<p> , , SpringMVC 。 address , 。</p>
<p></p><pre name="code" class="java"> @RequestMapping(value="/form")
public String submitForm(HttpServletRequest request){
String sid = request.getParameter("name");
String address = request.getParameter("address");
if(sid != null && submiter != null && faultTime != null && message != null && address != null){
if(formDataSaveService.saveForm(sid, submiter, message, address, faultTime)){
return "ac";
}
}
return "error";
}</pre><br>
方法2 フロントカットアップロード(後補充)
<p><br>
</p>
<link rel="stylesheet" href="http://static.jb51.net/public/res-min/markdown_views.css?v=1.0">
</pre>
以上は小编で绍介したAjaxがSpringに合わせてファイルアップロードの机能コードを実现しました。皆さんに助けてほしいです。ここでも私たちのサイトを応援してくれてありがとうございます。