为什么我的 if-else 块没有检测到伽马为空?这是我的代码。它是一个电子表格应用程序,这是保存功能,它循环访问表中的所有单元格并将其写入文件。这是我的代码:
public void Save () {
String FileName = JOptionPane.showInputDialog("Please enter the name for your file:");
if (FileName == null) {
System.err.println("You didn't enter anything");
} else {
int rows = Table.getRowCount();
int columns = Table.getColumnCount();
int alpha = 0;
int beta = 1;
choicer.setCurrentDirectory(new java.io.File("Desktop"));
choicer.setDialogTitle("Save Document");
choicer.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
choicer.setAcceptAllFileFilterUsed(false);
if (choicer.showSaveDialog(new JPanel()) == JFileChooser.APPROVE_OPTION) {
dir = String.valueOf(choicer.getSelectedFile());
}
File f = new File(dir + "\" + FileName + ".txt");
try {
fos = new FileOutputStream(f);
osw = new OutputStreamWriter(fos);
w = new BufferedWriter(osw);
for (alpha = 0; alpha <= rows - 1; alpha++) {
for (beta = 1; beta < columns; beta++) {
String gamma = String.valueOf(Table.getValueAt(alpha, beta));
if (gamma != null) {
w.write("<%! " + gamma + " !%> ");
} else {
w.write(" <%! |^-^| !%> ");
}
}
w.write("n");
}
} catch (IOException e) {
System.err.println("Some prob dude. Too big for me");
} finally {
try {
w.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
我尝试了重复的东西给出的链接,但这并不能解决我的问题。如果我这样做if(gamma != null && !(gamma.isEmpty))
那么只有 null 作为 gamma 的值写入文件。
也许,伽马是空的,但不是空的:
改变
if (gamma != null)
自
if (gamma != null && !gamma.isEmpty())
我能想到的只有三件事会导致这种情况。我一会儿会谈到这些。首先,您使用的是什么 IDE?您是否能够设置断点并监视变量?这将帮助您对以下问题进行故障排除。1. 你能确保第一个 for 循环命中吗?2.然后,确保您进入了第二个for循环。3. 最后,字符串伽玛的实际值是多少?这是您需要断点并在预期变量为 null 时检查该变量的地方。很可能你会看到它不是。当然,假设您的 for 循环甚至让您到达那里。
希望这有帮助!