大家好,又见面了,我是你们的朋友全栈君。
若本地系统所用的编码和程序所用的编码不同,强制转换就会出现乱码
public class analyzeMessyCode {
public static void main(String[] args) throws IOException {
FileOutputStream fileOut = new FileOutputStream
(new File("C:\\Users\\Administrator\\Downloads\\file1.txt"));
fileOut.write("hello world".getBytes("ISO8859-1"));
fileOut.close();
}
}
乱码产生的原因:编码和解码不统一产生的问题
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/139718.html原文链接:https://javaforall.cn