分享文章到朋友圈
海报分享
解决办法: https://stackoverflow.com/questions/8364640/how-to-properly-handle-a-gzipped-page-when-using-curl
curl -X GET -H " Host:www.baidu.com " -H "Connection:Keep-Alive" -H "Accept-Encoding:gzip" -H " User-Agent:okhttp/3.8.1 " " http://www.baidu.com/ "
curl --compressed -X GET -H " Host:www.baidu.com " -H "Connection:Keep-Alive" -H "Accept-Encoding:gzip" -H " User-Agent:okhttp/3.8.1 " " http://www.baidu.com/ "
用Java调用雪球的API,结果返回的是乱码,一番研究后发现是因为返回的数据使用了GZIP压缩,需要先解压才能得到正确数据。
在一类简单的业务场景下发起http请求的测试案例,返回的时候会100%有乱码。如果跳过跟厂商定制的7层负载均衡设备,直接连后端一台机器,则100%无乱码。在其他...
源代码名称:Ok2Curl*