当我想使用 RestFul WebService 和 jersy 下载文本文件(名称是 demo.txt)并通过它访问它时,我收到以下错误:HTTP Status 500 - c:\demo.txt(系统找不到指定的文件)而我在 C 中有 demo.txt:驱动我的代码是:
@Path("/file")
public class FileService {
@GET
@Path("/download")
@Produces("text/plain")
public Response getFile(){
File file=new File("c:\\demo.txt");
ResponseBuilder builder=Response.ok((Object)file);
builder.header("Content-Disposition","attachment; filename=\"test1.txt\"");
return builder.build();
}
}
请帮助我提前谢谢