|
楼主 |
发表于 2017-1-20 08:47:23
|
显示全部楼层
老师:您好,我已经在modelLoad方法中写了URL的方法,也把SimpleFileStore中相应的代码转换成自己的代码作为上传文件的服务进行发布。
Model.prototype.modelLoad = function(event){
// var data=this.comp("urlData");
// var uploader = this.comp("attachmentSimple1").uploader;
// if(event.file.size>600000){
// alert("上传的文件大小不能超过600KB");
// event.cancel = true;
// }
var URL="http://127.0.0.1/lfw/appNCFileUploadAction";
this.comp("attachmentSimple1").actionUrl = URL;
this.comp("attachmentSimple1").uploader.actionUrl = URL;
};
但是在我自己写的java文件中,有好多参数都没有转换,我看原始代码中是通过ActionContext进行转换了,这个类中有都处理哪些操作?
我主要是想知道在服务器端怎么获得文件流的信息。
public void service(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
if(request.getMethod().equals("GET")){
doGet(request, response);
}else if(request.getMethod().equals("POST")){
doPost(request, response);
}
}
|
|