iso-8859-1怎么解码
时间: 2024-01-02 16:03:19 浏览: 169
OC GZIP解压/压缩ISO-8859-1编码格式
可以使用Java中的String类的getBytes()方法和构造函数来解码iso-8859-1编码。具体步骤如下:
1. 使用getBytes()方法将iso-8859-1编码的字符串转换为字节数组。
2. 使用String类的构造函数将字节数组转换为UTF-8编码的字符串,代码如下:
new String(str.getBytes("iso8859-1"), "UTF-8");
其中,str为iso-8859-1编码的字符串。
阅读全文