想要把输入的int数写入到文件中去,写入的时候回出现乱码,哪位大神帮忙看一下
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
FileOutputStream fos = new FileOutputStream("number.txt");
System.out.println("请输入一个整数,按end结束:");
while(true){
String line = sc.nextLine();
if(line.equals("end")){
break;
}else{
fos.write((byte)Integer.parseInt(line));
}
}
fos.close();
}
|
|