Why does my if-else block not detect that gamma is null? Here is my code. It is a Spreadsheet application and this is the save function which loops through all of the cells in the table and writes it to a file. Here is my code:
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();
                }
            }
        }
    }
I tried the link given by the duplicate thing but that doesn't solve my problem. If I do if(gamma != null && !(gamma.isEmpty)) then only null is written to the file as the value of gamma.
 
     
    