curl命令乱码解决⽅案
curl url返回的内容乱码
使⽤iconv命令可以解决乱码问题
curl url|iconv -f gb2312 -t utf8
curl是什么命令iconv
-f(rom)指定来源编码,-t(o)转化的编码
-f fromcodeset
Identify the codeset of the input file. The implementation shall recognize the following two forms    of the fromcodeset option-argument:
-t tocodeset
Identify the codeset to be used for the output file. The implementation shall recognize the follow‐    ing two forms of the tocodeset option-argument:
实践得知,只需要指定源⽂件的编码就能修正乱码问题。通过其他编码显⽰则再加上-t

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。