JSP页面显示图片、word、excel等代码段

确实很强大的!
ServletOutputStream out = response.getOutputStream();   
response.setContentType("image/pjpeg");  //要显示对象的类型,不同的显示对象有不同的类型   
sout.write(byte[]);   //输出对象的字节数组        
out.clear();   
out = pageContext.pushBody();   
out.flush();    
out.close();  

你可能感兴趣的:(jsp,Excel)