1. 程式人生 > >poi操作excel入門

poi操作excel入門

poi是apache的一個開源框架,用來操作excel,先寫一個簡單易用的demo,後續會跟上詳細介紹

    

public static void main(String[] args) throws IOException {
		//建立檔案流
		FileOutputStream fileOutputStream = new FileOutputStream(new File("D:/workbook.xlsx"));
		//建立工作簿
		XSSFWorkbook sheets = new XSSFWorkbook();
		//建立表格
		XSSFSheet sheet = sheets.createSheet("sheetname");
		//建立行
		XSSFRow row = sheet.createRow(0);
		//建立列
		XSSFCell cell = row.createCell(0);
		//向列中寫入資料
		cell.setCellValue("successful");
		//將工作簿中的內容寫入檔案
		sheets.write(fileOutputStream);
		fileOutputStream.close();
		sheets.close();
	}