廢話不多說了,直接給大家貼代碼了。
jsp代碼如下
$.ajaxFileUpload ( { url:'http://lh.abc.com:8080/gap/gap/fileUpload.do',//用於檔案上傳的伺服器端請求地址(本機為fxb.abc.com) secureuri:false,//一般設定為false fileElementId:'file',//檔案上傳空間的id屬性 <input type="file" id="file" name="file" /> dataType: 'jsonp',//傳回值類型 一般設定為json jsonp: 'jsoncallback', jsonpCallback:'success_jsonpCallback', function success_jsonpCallback(data) { alert("1"); }, success: function (data, status) //伺服器成功響應處理函數 { alert(data.message);//從伺服器返回的json中取出message中的資料,其中message為在struts2中action中定義的成員變數 if(typeof(data.error) != 'undefined') { if(data.error != '') { alert(data.error); }else { alert(data.message); } } }, error: function (data, status, e)//伺服器響應失敗處理函數 { alert(status); alert(e); } } )
設定檔
<action name="fileUpload" class="com.gap.action.FileUploadAction" method="fileUpload"><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>
action中的處理如下
public String fileUpload() throws Exception {String path = ServletActionContext.getRequest().getRealPath("/upload1");// String path = ConfigDataInfo.getConfigValue("imgServer");try {File f = this.getFile();if (this.getFileFileName().endsWith(".exe")) {message = "對不起,你上傳的檔案格式不允許!!!";} else {FileInputStream inputStream = new FileInputStream(f);FileOutputStream outputStream = new FileOutputStream(path + "/"+ this.getFileFileName());byte[] buf = new byte[1024];int length = 0;while ((length = inputStream.read(buf)) != -1) {outputStream.write(buf, 0, length);}inputStream.close();outputStream.flush();message = "上傳成功";}} catch (Exception e) {e.printStackTrace();message = "對不起,檔案上傳失敗了!!!!";}return SUCCESS;}
每次跨域上傳圖片時,可以成功上傳到伺服器上,但是不能正確的返回資訊,總是進入error方法中,正確應該進入success方法