@At("/upload/image/?") @Ok("raw:jpg") public File readImage(String name) { return new File("xxxxx" + name); }
请问这个方法能返回多张图片
一个http请求能读取多个图片吗?
@wendal 请问下假如我需要返回多个图片.应该用什么方法呢?io流?
@Ok("void") public void read(@Param("names")String[] names, HttpServletResponse resp) { OutputStream out = resp.getOutputStream(); // 爱怎么写怎么写... }