我正在尝试在 java Eclipse 的控制台中编写几行命令,然后将它们保存为 .txt 文件。例如我有
做这个
不要那样做
在我的控制台上,我想拥有与 .txt 文件相同的东西。现在我可以将其转换为文件,但不能转换为 .txt 文件,也不是相同的可读形状。有什么帮助吗?我已经工作了 3 天了 :))
我认为这是我能得到的最接近的
FileInputStream fileInputStream=null;
File file = new File("C:\\Users\\Administrator\\Desktop\\a.txt");
byte[] bFile = new byte[(int) file.length()];
try {
//convert file into array of bytes
fileInputStream = new FileInputStream(file);
fileInputStream.read(bFile);
fileInputStream.close();
//convert array of bytes into file
FileOutputStream fileOuputStream =
new FileOutputStream("C:\\Users\\Administrator\\Desktop\\a.txt");
fileOuputStream.write(bFile);
fileOuputStream.close();
System.out.println("Done");
}catch(Exception e){
e.printStackTrace();
}