private boolean importAll(File file){
try{
InputStream input = null;
try {
input = new FileInputStream(excel);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
if(input == null){
return false;
}
HSSFWorkbook wb = null;
try {
wb = new HSSFWorkbook(input);
} catch (IOException e) {
</
try{
InputStream input = null;
try {
input = new FileInputStream(excel);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
if(input == null){
return false;
}
HSSFWorkbook wb = null;
try {
wb = new HSSFWorkbook(input);
} catch (IOException e) {
</