0

我有以下情况:我必须动态创建文件,用户代理以这种方式通过ajax向服务器发送数据:

$("#generateButton").live("click",function(){
dateLimite = $("#dateLimite").val();
 $.ajax({
   type    : "POST",
   url     : "../generateFile.do",
   data    : { fileName: "demandeExplication",
   nbrParam: "3",
   param1:"<%=agent.getPrenomAgentArabe()+" "+agent.getNomAgentArabe()%>",
   param2:"<%=descriptionActe%>",
   param3:dateLimite,
   },
   dataType: "html",

}).done(function(data) {
$("#test").empty().append(data);
  fileName = $("#test").find("input").val();
$.fileDownload('http://localhost:8080/gestionRH/fiches/temp/'+fileName);

});
});

服务器使用动态创建文件的操作处理此数据:

public class GenerateFile extends Action
{ 



public ActionForward execute(ActionMapping mapping, ActionForm form,
        HttpServletRequest request, HttpServletResponse response) throws IOException {
    String fileName = request.getParameter("fileName");
    Integer nbrParam = Integer.parseInt(request.getParameter("nbrParam"));
    String[] valueParam = new String[nbrParam+1];
    for(int i =1;i<=nbrParam;i++)
    {  System.out.println(request.getParameter("param"+i));
        valueParam[i]=request.getParameter("param"+i);
    }
    FileInputStream in = new FileInputStream("C:\\Users\\free\\Desktop\\myworkspace\\gestionRH\\WebRoot\\fiches\\"+fileName+".doc");
    POIFSFileSystem fs = new POIFSFileSystem(in);
    HWPFDocument doc = new HWPFDocument(fs);
    Range r = doc.getRange();
    for(int i=1;i<=nbrParam;i++)
    {   System.out.println("<param"+i+">");
        System.out.println(valueParam[i]);
        r.replaceText("<param"+i+">", valueParam[i]);
    }


    File frr = new File("C:\\Users\\free\\Desktop\\myworkspace\\gestionRH\\WebRoot\\fiches\\temp");
    File temp = File.createTempFile("monfile",".doc",frr);
    FileOutputStream out = new FileOutputStream(temp);
    doc.write(out);
    out.close();
    in.close();
    request.setAttribute("fileName", temp.getName());
    return mapping.findForward("fileName");
}
}

我使用这个插件进行下载:http: //johnculviner.com/category/jQuery-File-Download.aspx

我收到错误下载!我没有得到现有文件,或者当我在一段时间后使用此代码触发下载时:

function timeout_trigger() {    

文件名 = $("#test").find("input").val(); }

我以这种方式使用它:

......}).done(function(data) {
setTimeout("timeout_trigger()",7000);
});

而第二个解决方案并不总是有效,所以我必须解决这个问题。为什么下载已经存在的文件没有问题并且最近创建的下载时显示错误?

4

1 回答 1

2

那可能是因为该文件尚未上传。使用 AJAX,文件在后台上传。这需要时间。服务器代码仅在整个文件上传后才会触发(它不想对部分文件进行操作)。

因此,您需要一种方式来询问“是否正在进行上传?”。当我遇到同样的问题时,我发送了几个 AJAX 请求。第一个将在会话中创建一个状态对象,我将在其中记录文件名。

查询文件时,我会查看该状态对象以查看上传是否完成并返回状态。

还有一些方法可以连接到上传过程;当您这样做时,您甚至可以将“上传百分比”添加到状态对象。

于 2012-09-14T14:26:15.700 回答