上傳文件的分類: 無論什麼方式上傳文件,都要用post提交方式一: 前端:表單方式上傳文件 <form action="" method="post" enctype="multipart/form-data"> <!--非文件域--> <input type="text" name="desc"/ ...
上傳文件的分類:
無論什麼方式上傳文件,都要用post提交
方式一:
前端:表單方式上傳文件
<form action="" method="post" enctype="multipart/form-data">
<!--非文件域-->
<input type="text" name="desc"/>
<!--文件域-->
<input type="file" name="userHead" />
<input type="submit" value="上傳"/>
</form>
後端:
使用上傳技術是apache中的Commons-fileupload.jar
commons-io.jar
servlet:
1.在表單提交的時候把表單中的所有的數據封裝給request對象
2.通過commons-fileupload的api方法轉換request對象
中的數據到一個List集合中
// Parse the request
List<FileItem> items = upload.parseRequest(request);
3.遍歷 list集合,集合中都包含表單中所有的數據
包含文件域和非文件域
// Process the uploaded items
Iterator<FileItem> iter = items.iterator();
while (iter.hasNext()) {
FileItem item = iter.next();
if (item.isFormField()) {
//是非文件域
String name = item.getFieldName();
String value = item.getString();
...
} else {
//文件域
String fieldName = item.getFieldName();
String fileName = item.getName();
String contentType = item.getContentType();
boolean isInMemory = item.isInMemory();
long sizeInBytes = item.getSize();
...
//真正上傳文件
item.write(服務端的某個目錄)
}
}
spring mvc:
在springmvc中底層使用還是commons-fileupload.jar
和commons-io.jar,說明spring mvc對apache的Commons-fileupload
產品做二次封裝,封裝成:org.springframework.web.multipart.commons.CommonsMultipartResolver
在springmvc上傳文件api用CommonsMultipartResolver類中的api
<!-- spring mvc 文件上傳 -->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!--能配置多少個property,可以查文檔和查詢源代碼 -->
<!--最大上傳文件的大小 -->
<property name="maxUploadSize" value="8388608"></property>
<property name="resolveLazily" value="true"></property>
</bean>
用springmvc的api上傳文件
MultipartFile的對象調用一個上傳方法
對象.transto();把文件上傳到指定的伺服器上
方式二:
前端:沒有表單,用ajax上傳文件,必須藉助第三方
js工具ajaxfileupload.js,類似的上傳文件
的js工具有很多,ajaxfileupload.js工具是基於
jquery庫
//非同步提交
$.ajaxFileUpload({
url:basePath+"user/new",//提交的伺服器地址
secureuri:false,//url鏈接是否安全
fileElementId:"addHeadPicture",//文件域的id
type:"post",//必須是post提交
data:{"loginName":loginName,"password":password1,"nickName":nickName,"age":age,"sex":sex,"roleId":roleId},//傳遞的數據
dataType:"text",//註意text,可以寫成json
success:function(data,status){
//alert(data);
//回的結果串中有其他的字元串,通過下麵的方式
//把沒用的字元串替換掉
data=data.replace(/<PRE.*?>/g,'');
data=data.replace("<PRE>",'');
data=data.replace("</PRE>",'');
data=data.replace(/<pre.*?>/g,'');
data=data.replace("<pre>",'');
data=data.replace("</pre>",'');
alert(data);
},
error:function(){
alert("請求失敗!");
}
});
後端:
使用上傳技術是apache中的Commons-fileupload.jar
commons-io.jar
servlet:
1.在表單提交的時候把表單中的所有的數據封裝給request對象
2.通過commons-fileupload的api方法轉換request對象
中的數據到一個List集合中
// Parse the request
List<FileItem> items = upload.parseRequest(request);
3.遍歷 list集合,集合中都包含表單中所有的數據
包含文件域和非文件域
// Process the uploaded items
Iterator<FileItem> iter = items.iterator();
while (iter.hasNext()) {
FileItem item = iter.next();
if (item.isFormField()) {
//是非文件域
String name = item.getFieldName();
String value = item.getString();
...
} else {
//文件域
String fieldName = item.getFieldName();
String fileName = item.getName();
String contentType = item.getContentType();
boolean isInMemory = item.isInMemory();
long sizeInBytes = item.getSize();
...
//真正上傳文件
item.write(服務端的某個目錄)
}
}
spring mvc:
在springmvc中底層使用還是commons-fileupload.jar
和commons-io.jar,說明spring mvc對apache的Commons-fileupload
產品做二次封裝,封裝成:org.springframework.web.multipart.commons.CommonsMultipartResolver
在springmvc上傳文件api用CommonsMultipartResolver類中的api
<!-- spring mvc 文件上傳 -->
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<!--能配置多少個property,可以查文檔和查詢源代碼 -->
<!--最大上傳文件的大小 -->
<property name="maxUploadSize" value="8388608"></property>
<property name="resolveLazily" value="true"></property>
</bean>
用springmvc的api上傳文件
MultipartFile的對象調用一個上傳方法
對象.transferTo();把文件上傳到指定的伺服器上
補充:
能夠給服務端提交數據的方式
1.用form表單
2.用超鏈接
3.用ajax非同步提交