I have to import data from an excel file to database, and to do this, I would like to check the extension of the chosen file.
This is my code...
String filename = file.getName();
String extension = filename.substring(filename.lastIndexOf(".") + 1, filename.length());
String excel = "xls";
if (extension != excel) {
JOptionPane.showMessageDialog(null, "Choose an excel file!");
}
else {
String filepath = file.getAbsolutePath();
JOptionPane.showMessageDialog(null, filepath);
String upload = UploadPoData.initialize(null, filepath);
if (upload == "OK") {
JOptionPane.showMessageDialog(null, "Upload Successful!");
}
}
But I always get "Choose an excel file!". I can't find what is wrong with my code, could someone please help.
extensionvariable get? Great question on string comparisons: stackoverflow.com/questions/513832/… – maksimov Jun 7 '12 at 8:40equalsIgnoreCase()whenever you are going to check for equality between strings (assuming that you do want to ignore case). – posdef Jun 7 '12 at 8:44