webservice返回excel表而不在客户端下载它

时间:2014-03-31 08:35:59

标签: java jquery html5 excel web-services

我有java semirestful webservices代码如下

 @Path("/todo")
 public class TodoResource  
 { 
 @GET
 @Produces(MediaType.APPLICATION_OCTET_STREAM)
 public  Response getfile()
 {
  File file =new File("D:\\Test.xls"); // Initialize this to the File path you   want to   serve.
  return Response.ok(file, MediaType.APPLICATION_OCTET_STREAM).build();
   } 
  }

当我从客户端调用带有jquery的ajax调用的Web服务时我不想下载这个文件而只是想将文件存储在某个参数中并解析它。 怎么做?

0 个答案:

没有答案