我有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服务时我不想下载这个文件而只是想将文件存储在某个参数中并解析它。 怎么做?