我正在尝试创建一个将int[][]
列表和文件名 String outName 作为参数的方法,读取每个list[i][j]
条目并将它们相应地转换为 ascii 字符。
这就是我所拥有的:
public static void makeAscii(int[][] list, String outName) {
try {
PrintStream output = new PrintStream(new File(outName));
for (int i = 0; i<list.length; i++) {
for (int j = 0; j<list[0].length; j++){
if (list[i][j] <= 20 && list[i][j] >= 0) {
System.out.print('M');
}
if (list[i][j] <= 21 && list[i][j] >= 40) {
output.print('L');
}
if (list[i][j] <= 41 && list[i][j] >= 60) {
output.print('I');
}
if (list[i][j] <= 61 && list[i][j] >= 80) {
output.print('o');
}
if (list[i][j] <= 81 && list[i][j] >= 100) {
output.print('|');
}
if (list[i][j] <= 101 && list[i][j] >= 120) {
output.print('=');
}
if (list[i][j] <= 121 && list[i][j] >= 140) {
output.print('*');
}
if (list[i][j] <= 141 && list[i][j] >= 160) {
output.print(':');
}
if (list[i][j] <= 161 && list[i][j] >= 180) {
output.print('-');
}
if (list[i][j] <= 181 && list[i][j] >= 200) {
output.print(',');
}
if (list[i][j] <= 201 && list[i][j] >= 220) {
output.print('.');
}
if (list[i][j] <= 221 && list[i][j] >= 255) {
output.print(' ');
}
}
System.out.println();
}
}
catch (FileNotFoundException e) {
System.out.println("Coudln't create file");
System.exit(-1);
}
}
我遇到的问题是,虽然此方法相应地创建了一个 txt 文件,但它不会在文本文件中写入任何字符,因此将文件留空。为什么是这样?