@throws Exception
*/
@SuppressWarnings("resource")
public static void main(String[] args) throws Exception
{
// 创建一个Workbook
HSSFWorkbook workbook = new HSSFWorkbook();
// 创建一个sheet页
HSSFSheet sheet = workbook.createSheet("学生表");
// 创建第一行
HSSFRow row = sheet.createRow(0);
// 创建单元格
HSSFCell cell1 = row.createCell(0);
HSSFCell cell2 = row.createCell(1);
HSSFCell cell3 = row.createCell(2);
HSSFCell cell4 = row.createCell(2);
// 设置表头
cell1.setCellValue("学号");
cell2.setCellValue("姓名");
cell3.setCellValue("性别");
cell4.setCellValue("年龄");
FileOutputStream stream = new FileOutputStream("d:/student.xls");
workbook.write(stream);
}