JSP 는 ajax FileUpload. js 를 사용 하여 도 메 인 문 제 를 실현 합 니 다.

잔말 말고 바로 코드 를 붙 여 드 리 겠 습 니 다.
jsp 코드 는 다음 과 같 습 니 다.

$.ajaxFileUpload 
( 
{ 
url:'http://lh.abc.com:8080/gap/gap/fileUpload.do',//               (   fxb.abc.com) 
secureuri:false,//     false 
fileElementId:'file',//       id    
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); 
} 
} 
)

프로필




text/html




text/html



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 방법 에 들 어가 야 합 니 다.

좋은 웹페이지 즐겨찾기