下载网站图片代码并且解析乱码
代码如下: // 获取网站对象 ServletContext context = this.getServletContext(); // 获取网站资源 String path = context.getRealPath(“/imgs/人.jpg”); File file = new File(path); System.out.println(file); // 设置响应头通知浏览器数据的处理方式 response.setHeader(“content-disposition”, “attachment;filename=”+ URLEncoder.encode(file.g
用户评论