IO流读取图片

/**
*  
* @param imgName
* @param request
* @param response
* @return
* @throws IOException
*/
@RequestMapping(value = "/IoReadImage/{imgName}", method = RequestMethod.GET)
public String IoReadImage(@PathVariable String imgName, HttpServletRequest request, HttpServletResponse response)
throws IOException
{
ServletOutputStream out = null;
FileInputStream ips = null;
try
{
//获取图片存放路径 
String imgPath = "C:\\Users\\booway\\Desktop\\" + imgName + ".png";
ips = new FileInputStream(new File(imgPath));
response.setContentType("multipart/form-data");
out = response.getOutputStream();
//读取文件流 
int len = 0;
byte[] buffer = new byte[1024 * 10];
while ((len = ips.read(buffer)) != -1)
{
out.write(buffer, 0, len);
}
out.flush();
} catch (Exception e)
{
e.printStackTrace();
} finally
{
out.close();
ips.close();
}
return null;
}

猜你喜欢

转载自www.cnblogs.com/closeIt/p/13367323.html
今日推荐