public class MainModule {
@At("/hello")
@Ok("raw")
public InputStream doHello() {
//获取微信永久二维码
Response response = Http.get("https://mp.weixin.qq.com/cgi-bin/showqrcode?ticket=gQFr8TwAAAAAAAAAAS5odHRwOi8vd2VpeGluLnFxLmNvbS9xLzAyLXNReGdyN2RlNTQxMDAwMDAwN2wAAgSrKPRYAwQAAAAA");
return response.getStream();
}
}
这样写访问http://localhost:8080/hello,是一个图片直接展示在chrome上,我想访问后直接下载一个png文件怎么办?