从服务器返回exe文件并通过浏览器在客户端上下载

时间:2015-03-25 07:13:46

标签: java javascript html ajax

我正在尝试将exe文件从服务器发送到客户端。 文件内容以字节数组的形式出现。 然后我试图再次在客户端计算机上重新创建.exe文件。 在服务器端,我将文件内容返回为  'application/octet-stream','Content':bytearray

我正在使用以下类型的ajax调用来获取文件内容。

$.ajax({
type : 'POST',
url : 'https://myurl,
cache : false,
success : function(data) {
var myBlob = new Blob([data], { type: "application/octet-stream" });
              var uri = (window.URL || window.webkitURL).createObjectURL(myBlob);

              // var outputFile = window.prompt("Saving .log file of rows from different modalities") || 'export';
                var  outputFile = "utility"+ '.exe'
               var downloadLink = document.createElement("a");
               downloadLink.href = uri;
               downloadLink.download =outputFile;

               document.body.appendChild(downloadLink);
               downloadLink.click();
               document.body.removeChild(downloadLink); 
cnt++;
/* }); */
},

error : (function(message) {
debugger;
console.log('message ' +message)
}),

statusCode : {
404 : function() {
alert("page not found");
}
}
}); 

但是当文件下载时,文件的大小很大。 对于原始文件192kbs        下载的文件320 kbs 此外,我在运行exe后得到以下异常: 文件版本与您在32/64

上运行的Windows版本不兼容

请有人帮忙解决此问题

以下是返回exe文件内容的服务器端代码

    //The context with which all SDK operations are performed.
Context context = Context.create();
String modelnumber = parameters.modelnumber;
String siteid=parameters.siteid;
def b;
try{

JSONArray arr=new  JSONArray();
    ModelFinder mf = new ModelFinder(context);
    mf.setName(modelnumber)

    Model m=mf.find();
    if(m!=null)
    {
        DeviceFinder df = new DeviceFinder(context);
        df.setModel(m)
        df.setSerialNumber(siteid)
        Device dev=df.find()
        if(dev!=null)

        {
            UploadedFileFinder  filefinder=new UploadedFileFinder(context)
            filefinder.setDevice(dev)
            filefinder.setFilename("/remote/notepad.exe")
            UploadedFile temp=filefinder.find()
            if(temp!=null)
            {
                    File f=temp.extractFile();
                    arr[0]=f.text
                    b=f.getBytes() 

            }
        }

    }

    return ['Content-Type': 'application/binary', 'Content':b];
    }
    catch(Exception e)
    {       return ['Content-Type': 'application/text', 'Content':e.getMessage()];
    }

1 个答案:

答案 0 :(得分:0)

  

我已按以下方式解决了问题:       服务器端代码:

JSONArray arr=new JSONArray() 
def bytes=file.getBytes()
                arr.add(bytes)

                return ['Content-Type': 'application/json', 'Content': arr];
            }

<强>&GT;客户端代码:

value3 comes from ajax which is a byte array

      var arr =value3
                  var byteArray = new Uint8Array(arr);
                  var a = window.document.createElement('a');

                  a.href = window.URL.createObjectURL(new Blob([byteArray], { type: 'application/octet-stream' }));
                  a.download ="Utility.exe";

                  // Append anchor to body.
                  document.body.appendChild(a)
                  a.click();


                  // Remove anchor from body
                  document.body.removeChild(a)