jsp上傳文件插件
⑴ jsp如何限制上傳文件的類型
你可以使用上傳文件的插件的相關API來獲取上傳文件的擴展名,
不知道你用的上傳文件的插件是哪個?
這里舉個SmartUpload的例子:
<jsp:useBean id="smart" scope="page" class="com.jspsmart.upload.SmartUpload"/>
<%
String ext = smart.getFiles().getFile(0).getFileExt() ;
//取得所上傳的第一個文件的擴展名.
%>
=============================================================
那你的上傳文件是有使用
<input type="file" name="fileName">
這樣的的HTML標簽吧?
如果是這樣的話,當你提交後,
你可以使用下面的語句來獲取文件的擴展名,然後寫相應的擴展名限制語句
<%
String fullFileName = request.getParameter("fileName");
int index = fullFileName.lastIndexOf('.');
String ext = fullFileName.substring(index+1);
%>
<br>
<%=ext%>
====================================================
那你所上傳的MIME類型是怎麼獲取的?
不也就是Web容器根據你所上傳的文件的擴展名在其相關的xml配置文件中(比如說Tomcat的全局web.xml)中的
<mime-mapping>
<extension>xxx</extension>
<mime-type>xxx/xxx</mime-type>
</mime-mapping>
中獲取mime類型的嗎?
說到底,mime類型的判斷還是通過擴展名來實現的,
那麼你可以在你的Web容器的相關配置文件中設置允許被上傳的mime映射,
然後在處理上傳文件的時候,在相關代碼中寫限制的代碼,如果此上傳文件的類型不在mime映射范圍內,就不進行保存處理.
=================================================================
明白你的意思了,你是想通過所上傳文件的文件頭信息中的相關信息來獲取此文件的MIME類型,然後再進行相關的限制吧?
=====================================
參見http://..com/question/100623013.html的回答
我覺得你不用其他的上傳組件,至少你做Web項目要用Struts吧,
Struts中的org.apache.struts.upload.FormFile這個介面可以對上傳的文件進行封裝,然後通過其getContentType()返回的是一個所上傳文件的MIME類型字元串,我測試過了,即使所上傳文件沒有擴展名,這個方法也可根據所上傳的文件取到其MIME類型,這就可以根據這個方法返回的字元串值,在相應的業務邏輯中寫限制的代碼了吧.
⑵ 怎麼實現文件批量上傳 顯示進度條而且上傳後不跳轉頁面 推薦幾個上傳插件
用JSP可以批量上傳,要想帶進度條,單單JSP似乎難以做到,但可借用一些JS插件,如:ExtJS。
ExtJS裡面有進度條功能,將JSP與ExtJS內部的數據結合起來,應該可以實現,不過這種我沒做過。
在我所見中,163郵箱里有這種的功能,可以參考一下。
⑶ jsp如何同時添加多個附件進行上傳
單一採用文件瀏覽框比較難實現。可以從網上下載一些插件,支持多個選擇的。
⑷ jquery 上傳文件插件uploadify jsp版本
寫一個servlet,看這里
http://www.javaeye.com/topic/376101
⑸ ueditor1.4.3 jsp版本在上傳圖片時出現「後端配置項沒有正常載入,上傳插件不能正常使用!」
關於這個錯誤,富文本框無法上傳文件的解決方案:
1、確認config.json裡面的 imagePathFormat 這個路徑正確;
2、確認在web-inf下面的lib中已導入Ueditor的jar包和文件上傳相關的jar包。
⑹ jsp如何上傳文件
只是jsp部分的話,只要在form標簽里加一個「enctype="multipart/form-data"」就好了,讀取下載的話只要弄個commons-fileupload之類的插件就很容易解決
這里是下載部分的核心代碼:
<%@ page contentType="text/html;charset=gb2312" import="com.jspsmart.upload.*" %>
<%
String sUrl = (String)request.getAttribute("fileurl");
SmartUpload su = new SmartUpload();
su.initialize(pageContext);
//設定contentDisposition為null以禁止瀏覽器自動打開文件,保證點擊鏈接後是下載文件。若不設定,則下載的文件擴展名為doc時,瀏覽器將自動用word打開它;擴展名為pdf時,瀏覽器將用acrobat打開。
su.setContentDisposition(null);
su.downloadFile(sUrl);
%>
但是歸根結底,你還是要一個存放文件路徑的資料庫啊,否則你下載時候下載地址每次都寫死或者手動輸入??如果要動態讀取的話還是要建一個存放文件路徑的資料庫的
⑺ JSP頁面上傳圖片並把路徑保存到資料庫該如何操作,或者其他上傳插件,怎麼實現
先保存到文件夾,然後從文件夾讀取出來,用二進制流額的方式讀取然後保存到資料庫就行了
⑻ jsp文件上傳怎麼實現批量文件上傳,要不依賴於flash插件
在頁面上多添加幾個<input type="file"/>標簽就行了,用form提交之後在action中獲取的是文件列表,其他的跟單個文件上傳沒啥區別,試試的吧
⑼ jsp實現文件上傳到mysql資料庫並能下載文件模塊案列
不知道你基礎怎麼樣,這是最原始最簡單的案例了,html代碼是你要選擇文件的界面,jsp代碼請命名為smartupload_demo02.jsp(因為html裡面表單的action是提交到這個頁面,當然你可以改,html表單action與jsp名稱一致就行)
另外還有很重要的一件事,你需要下載一個SmartUpload.jar插件放到你的web目錄的lib文件夾下面,如果你不知道怎麼下網路,再不行給個郵箱我發給你。不理解的地方可以聯系我[email protected],希望可以幫到你。
html代碼:
<html>
<head><title>www.mldnjava.cn,MLDN高端Java培訓</title></head>
<body>
<form action="smartupload_demo02.jsp" method="post" enctype="multipart/form-data">
姓名:<input type="text" name="uname"><br>
照片:<input type="file" name="pic"><br>
<input type="submit" value="上傳">
<input type="reset" value="重置">
</form>
</body>
</html>
jsp代碼:
<%@ page contentType="text/html" pageEncoding="GBK"%>
<%@ page import="org.lxh.smart.*"%>
<%@ page import="cn.mldn.lxh.util.*"%>
<html>
<head><title>www.mldnjava.cn,MLDN高端Java培訓</title></head>
<body>
<%
request.setCharacterEncoding("GBK") ;
%>
<%
SmartUpload smart = new SmartUpload() ;
smart.initialize(pageContext) ; // 初始化上傳操作
smart.upload() ; // 上傳准備
String name = smart.getRequest().getParameter("uname") ;
IPTimeStamp its = new IPTimeStamp(request.getRemoteAddr()) ; // 取得客戶端的IP地址
String ext = smart.getFiles().getFile(0).getFileExt() ; // 擴展名稱
String fileName = its.getIPTimeRand() + "." + ext ;
smart.getFiles().getFile(0).saveAs(this.getServletContext().getRealPath("/")+"upload"+java.io.File.separator + fileName) ;
%>
<%=smart.getFiles().getFile(0).getFileName().matches("^\\w+.(jpg|gif)$")%>
<h2>姓名:<%=name%></h2>
<img src="../upload/<%=fileName%>">
</body>
</html>
⑽ jsp中使用jquery的ajaxfileupload插件怎麼實現非同步上傳
ajaxfileupload實現非同步上傳的完整例子:
JSP頁面中引入的script代碼:
<script>
function ajaxFileUpload()
{
$("#loading").ajaxStart(function(){
$(this).show();
})//開始上傳文件時顯示一個圖片
.ajaxComplete(function(){
$(this).hide();
});//文件上傳完成將圖片隱藏起來
$.ajaxFileUpload({
url:'AjaxImageUploadAction.action',//用於文件上傳的伺服器端請求地址
secureuri:false,//一般設置為false
fileElementId:'imgfile',//文件上傳空間的id屬性 <input type="file" id="imgfile" name="file" />
dataType: 'json',//返回值類型 一般設置為json
success: function (data, status) //伺服器成功響應處理函數
{
alert(data.message);//從伺服器返回的json中取出message中的數據,其中message為在struts2中定義的成員變數
if(typeof(data.error) != 'undefined')
{
if(data.error != '')
{
alert(data.error);
}else
{
alert(data.message);
}
}
},
error: function (data, status, e)//伺服器響應失敗處理函數
{
alert(e);
}
}
)
return false;
}
</script>
struts.xml配置文件中的配置方法:
<struts>
<package name="struts2" extends="json-default">
<action name="AjaxImageUploadAction" class="com.test.action.ImageUploadAction">
<result type="json" name="success">
<param name="contentType">text/html</param>
</result>
<result type="json" name="error">
<param name="contentType">text/html</param>
</result>
</action>
</package>
</struts>
上傳處理的Action ImageUploadAction.action
package com.test.action;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.Arrays;
import org.apache.struts2.ServletActionContext;
import com.opensymphony.xwork2.ActionSupport;
@SuppressWarnings("serial")
public class ImageUploadAction extends ActionSupport {
private File imgfile;
private String imgfileFileName;
private String imgfileFileContentType;
private String message = "你已成功上傳文件";
public File getImgfile() {
return imgfile;
}
public void setImgfile(File imgfile) {
this.imgfile = imgfile;
}
public String getImgfileFileName() {
return imgfileFileName;
}
public void setImgfileFileName(String imgfileFileName) {
this.imgfileFileName = imgfileFileName;
}
public String getImgfileFileContentType() {
return imgfileFileContentType;
}
public void setImgfileFileContentType(String imgfileFileContentType) {
this.imgfileFileContentType = imgfileFileContentType;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
@SuppressWarnings("deprecation")
public String execute() throws Exception {
String path = ServletActionContext.getRequest().getRealPath("/upload/mri_img_upload");
String[] imgTypes = new String[] { "gif", "jpg", "jpeg", "png","bmp" };
try {
File f = this.getImgfile();
String fileExt = this.getImgfileFileName().substring(this.getImgfileFileName().lastIndexOf(".") + 1).toLowerCase();
/*
if(this.getImgfileFileName().endsWith(".exe")){
message="上傳的文件格式不允許!!!";
return ERROR;
}*/
/**
* 檢測上傳文件的擴展名是否合法
* */
if (!Arrays.<String> asList(imgTypes).contains(fileExt)) {
message="只能上傳 gif,jpg,jpeg,png,bmp等格式的文件!";
return ERROR;
}
FileInputStream inputStream = new FileInputStream(f);
FileOutputStream outputStream = new FileOutputStream(path + "/"+ this.getImgfileFileName());
byte[] buf = new byte[1024];
int length = 0;
while ((length = inputStream.read(buf)) != -1) {
outputStream.write(buf, 0, length);
}
inputStream.close();
outputStream.flush();
} catch (Exception e) {
e.printStackTrace();
message = "文件上傳失敗了!!!!";
}
return SUCCESS;
}
}