在servlet中用outputStream输出中…

本文介绍如何在Servlet中使用OutputStream输出中文内容,避免出现乱码。通过设置响应头`Content-type`为`text/html;charset=UTF-8`,确保浏览器以UTF-8编码解析内容,或者直接将中文字符转换为字节流进行输出。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

package cn.itcast.china;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.omg.CORBA_2_3.portable.OutputStream;

//在servlet中用outputStream输出中文问题
public class China extends HttpServlet {

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
text4(response);
}
private void text4(HttpServletResponse response) throws IOException {
//若想看到1则应该把1转换为字符“1”
response.getOutputStream().write("".getBytes());
response.getOutputStream().write("1".getBytes());
}
private void text3(HttpServletResponse response) throws IOException {
//content='text/html;charset=UTF-8'中间的;若写成,则变成了下载(浏览器会提示下载)
response.getOutputStream().write("".getBytes());
response.getOutputStream().write("中国".getBytes());
}
private void text2(HttpServletResponse response) throws IOException {
//html:  标签可以模拟http响应头
response.getOutputStream().write("".getBytes());
response.getOutputStream().write("中国".getBytes());
}
private void text1(HttpServletResponse response) throws IOException {
//显示中文不乱码的解决方案1:程序控制浏览器以什么码表打开
response.setHeader("Content-type", "text/html;charset=UTF-8");
response.getOutputStream().write("中国".getBytes());
}

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request,response);
}

}
//提示:把代码块抓到test方法中,先选中代码块再右击--选中Refactor--Extrat Method。填写test1/2/3即可
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值