JAX-RS Web服务通过浏览器但不通过XMLHTTPRequest

时间:2014-12-03 09:45:49

标签: javascript jax-rs

我用apache服务器编写了用于下载文件的JAX-RS服务:

服务的主要内容是 -

@GET
@Produces("application/pdf")
public Response convertCtoF() {

     String path = "D:\\a.pdf";
     File file=new File(path);
     ResponseBuilder rb = Response.ok((Object) file);
        rb.header("Content-Disposition","attachment; filename=a.pdf");
        return rb.build();
}

当我通过网络浏览器访问它时,这是有效的。

但是当我通过XMLHTTPRequest访问时,它无法正常工作。它提供 XMLHttp.Status = 0

客户端代码:

<!DOCTYPE html>
<html>
<head>
<script>
function Download()
{

 var  xmlhttp=new XMLHttpRequest();


xmlhttp.open('GET','http://localhost:8080/RESTExample/ABC/ctofservice',true);



xmlhttp.send();
     xmlhttp.onreadystatechange = function() {


               if (xmlhttp.readyState == 4) {
                alert('xmlhttp.readyState == 4');

                  if ( xmlhttp.status == 200) {

                        alert('xmlhttp.status == 200');
                  }
                  else
                  {
                    alert(xmlhttp.status);
                  }

                  }
                 }


}


</script>
</head>
<body>

<h2>File Downloading Web Interface</h2>
<div id="myDiv"></div>
<button type="button" onclick="Download()">Download File</button>

</body>
</html>

1 个答案:

答案 0 :(得分:0)

它不能与XMLHTTPRequest一起使用,因为您正在下载文件,出于安全原因,您不允许使用Ajax执行此操作。有各种解决方法可供尝试。我不会在这里重复这些,所以尝试在Google上搜索“ajax文件下载”,然后选择您喜欢的方法。