JSP使用ajaxFileUpload.js實現跨域問題_JSP編程

來源:互聯網
上載者:User

廢話不多說了,直接給大家貼代碼了。

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方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.