servlet输入输出问题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了servlet输入输出问题相关的知识,希望对你有一定的参考价值。
public class InitParamServlet extends HttpServlet
ServletConfig myconfig;
public void init(ServletConfig config)throws ServletException
super.init(config);
myconfig=config;
protected void doGet(HttpServletRequest request, HttpServletResponse res) throws ServletException, IOException
res.setContentType("application/pdf");
ServletOutputStream out=res.getOutputStream();
File pdf=null;
BufferedInputStream buf=null;
//获取初始化参数
String pdfDir=myconfig.getInitParameter("FilePath");
if(pdfDir==null||pdfDir.equals(""))
throw new ServletException("Servlet parameters Wrongs");
try
pdf=new File(pdfDir+"simple.pdf");
res.setContentLength((int)pdf.length());
//FileInputStream input=new FileInputStream(pdf);
ServletInputStream in=request.getInputStream(pdf);
//buf=new BufferedInputStream(input);
//int readBytes =0;
//从文件读取数据并写入ServletOutputStream
//while((readBytes=buf.read())!=-1)
while(in.read()!=-1)
// out.write(readBytes);
out.write(in.read());
catch(IOException e)
System.out.println("file not found!");
finally
//关闭输入输出流
if(out!=null)
out.close();
if(in!=null)
in.close();
/*ServletInputStream in=request.getInputStream(pdf);
* if(in!=null)
* in.close(); */我把以上的改了不经过缓存,直接输入流向输出流写数据,这三行报错求解
已解决
Java中Servlet输出中文乱码问题
1.现象:字节流向浏览器输出中文,可能会乱码(IE低版本)
private void byteMethod(HttpServletResponse response) throws IOException, UnsupportedEncodingException { String date = "你好"; ServletOutputStream outputStream = response.getOutputStream(); outputStream.write(date.getBytes(); }
原因:服务器端和浏览器端的编码格式不一致。
解决方法:服务器端和浏览器端的编码格式保持一致
private void byteMethod(HttpServletResponse response) throws IOException, UnsupportedEncodingException { String date = "你好"; ServletOutputStream outputStream = response.getOutputStream(); // 浏览器端的编码 response.setHeader("Content-Type", "text/html;charset=utf-8"); // 服务器端的编码 outputStream.write(date.getBytes("utf-8")); }
或者简写如下
private void byteMethod(HttpServletResponse response) throws IOException, UnsupportedEncodingException { String date = "你好"; ServletOutputStream outputStream = response.getOutputStream(); // 浏览器端的编码 response.setContentType("text/html;charset=utf-8"); // 服务器端的编码 outputStream.write(date.getBytes("utf-8")); }
2.现象:字符流向浏览器输出中文出现 ???乱码
private void charMethod(HttpServletResponse response) throws IOException { String date = "你好"; PrintWriter writer = response.getWriter(); writer.write(date); }
原因:表示采用ISO-8859-1编码形式,该编码不支持中文
解决办法:同样使浏览器和服务器编码保持一致
private void charMethod(HttpServletResponse response) throws IOException { // 处理服务器编码 response.setCharacterEncoding("utf-8"); // 处理浏览器编码 response.setHeader("Content-Type", "text/html;charset=utf-8"); String date = "中国"; PrintWriter writer = response.getWriter(); writer.write(date); }
注意!setCharacterEncoding()方法要在写入之前使用,否则无效!!!
或者简写如下
private void charMethod(HttpServletResponse response) throws IOException { response.setContentType("text/html;charset=GB18030"); String date = "中国"; PrintWriter writer = response.getWriter(); writer.write(date); }
总结:解决中文乱码问题使用方法 response.setContentType("text/html;charset=utf-8");可解决字符和字节的问题。
也可以看一下这位博主的文章,感觉思路很清晰。https://www.cnblogs.com/Survivalist/p/9015754.html
如有问题还望指正!
以上是关于servlet输入输出问题的主要内容,如果未能解决你的问题,请参考以下文章
servlet从服务器磁盘文件读出到浏览器显示,中文乱码问题,不要忘记在输入流和输出流都要设置编码格式,否则一个地方没设置不统一就会各种乱码