excel写入笔记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了excel写入笔记相关的知识,希望对你有一定的参考价值。

excel写入笔记


import org.apache.poi.hssf.usermodel.HSSFCell;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;

import org.apache.poi.ss.usermodel.Row;

import org.apache.poi.ss.usermodel.Cell;

import org.apache.poi.ss.usermodel.Sheet;



public class Demo3 {


static String FILENAMEPATH = "E:\\data.xls";

public static void main(String[] args) throws Exception {

// TODO Auto-generated method stub


HSSFWorkbook exb = new HSSFWorkbook();//定义一个新的工作簿

Sheet sheet = exb.createSheet("第一个shell页");   //创建一个

Row row = sheet.createRow(0); //创建一个行

Cell cell = row.createCell(0); //创建一个列

cell.setCellValue(new Date()); //给单元格设值

//写入值

row.createCell(1).setCellValue(1);

row.createCell(2).setCellValue("第一个字符串");

row.createCell(3).setCellValue(true);

row.createCell(4).setCellValue(HSSFCell.CELL_TYPE_NUMERIC);

row.createCell(5).setCellValue(false);

//row.createCell(1).setCellValue(2);

FileOutputStream fileOut = new FileOutputStream(FILENAMEPATH);  //打开文件

exb.write(fileOut); //写入文件

fileOut.close(); // 关闭文件

System.out.println("操作成功");

}


}


以上是关于excel写入笔记的主要内容,如果未能解决你的问题,请参考以下文章

Python学习笔记-数据报表之Excel操作模块

Python学习笔记十四_操作Excel

python学习笔记(十三)-python对Excel进行读写修改操作

day7-Python学习笔记(十六)excel操作

使用python写入HDFS中的excel文件

学习笔记之xlsx文件操作篇