在Junit 和 Tomcat 中 运行同一段代码,出现编码错误

发布于 01-02 02:18 字数 1242 浏览 515 评论 2

public class WeatherData {

    // Junit 测试没有出现乱码,在Tomcat中运行出现乱码

    public String getWeatherData(String url) throws IOException {

        URL informationUrl = new URL(url);
        InputStream inputStream = informationUrl.openStream();
        InputStreamReader isr = new InputStreamReader(inputStream);
        BufferedReader br = new BufferedReader(isr);
        byte[] bytes = br.readLine().getBytes("UTF-8");
        String json = new String(bytes,"UTF-8");
        br.close();
        isr.close();
        inputStream.close();
        System.out.println(json);
        return json;
    }

    @Test
    public void TestGet() throws IOException{
        System.out.println(getWeatherData("http://t.weather.sojson.com/api/weather/city/101260301"));
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

好听的两个字的网名2022-01-07 03:54:37

你是说的Tomcat 中server.xml 里面的: <Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443" URIEncoding="UTF-8"/> 我也是在网上搜索的,我试试

巡山小妖精2022-01-04 16:56:36

设置tomcat的编码格式

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文