我正在尝试使用 Apache POI 将数据写入 excel 表。我正在使用 TestNG 框架和 Eclipse IDE。程序成功执行,没有任何错误。但是当我在我的项目源上单击刷新时,excel表没有出现。请告诉我如何查看生成的 Excel 表格。我的代码如下:
public class Test {
public static void main(String args[]) {
try {
FileOutputStream fos = new FileOutputStream("User.xls");
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet worksheet = workbook.createSheet("worksheet");
HSSFRow row1 = worksheet.createRow((short) 0);
HSSFCell cell1 = row1.createCell((short) 0);
cell1.setCellValue("abc");
HSSFCell cell2 = row1.createCell((short) 1);
cell2.setCellValue("123");
workbook.write(fos);
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}