日期:2014-05-16 浏览次数:20381 次
public void doGetImage(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html; charset=GBK"); response.setContentType("image/jpeg"); FileInputStream inputs = new FileInputStream(filePath+"1371190361756.jpg"); OutputStream output = response.getOutputStream(); try { int count = 0; byte[] buffer = new byte[1024*8]; while ( (count = inputs.read(buffer)) != -1 ) output.write(buffer, 0, count); } finally { if(inputs!=null){ try { inputs.close(); } catch (IOException e) { e.printStackTrace(); } } if(output!=null){ try { output.close(); } catch (IOException e) { e.printStackTrace(); } } } }