如何在Web服务响应中发送html文件

时间:2016-10-19 10:24:36

标签: html eclipse web-services java-ee

我有以下web服务,它以3种不同的格式(Json / xml / html)返回结果,具体取决于请求类型查询参数:

Url看起来像这样的东西:

http://xyz/myapp/FoodService/testSelect?query=pizza2&output=html

这种方法是这样的:

      @GET
      @Path("/testSelect")
      public Response selectGetTest(@QueryParam("query") String query,@QueryParam("output") String resultType, @Context HttpServletRequest request)
    {

// Build html file manually using buffered writer and return the file
//  
//
//
//}