嗨我想从java代码创建一个excel文件,我把这个代码放在eclipse上 但没有任何事情发生
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import java.io.FileOutputStream;
public class TestPOI1 {
public static void main(String[] args) {
//create the new workbook
Workbook workbook = new HSSFWorkbook();
try {
//create the output stream to save the document on the hard drive
FileOutputStream output = new FileOutputStream("Test1.xls");
//write the file onto the hard drive
workbook.write(output);
//finish it up by closing the document
output.close();
} catch(Exception e) {
e.printStackTrace();
}
}
}
在控制台中,此消息已写入
用法:BiffDrawingToXml [options] inputWorkbook选项:
-exclude-workbook排除工作簿级记录
-sheet-indexes具有指定索引的输出表
-sheet-namek具有指定名称的输出表
我无法在硬盘驱动器或文件项目中找到我的excel文件。 谢谢你的帮助。
答案 0 :(得分:0)
该输出不是来自您在此处显示的来源。所以你一定是在运行别的东西,并且运行不正确 您列出的源应该将一个空的xls文件(甚至可能是一个无效的文件)写入程序启动的同一目录。