六祎-Jxl创建Excel
第一步:导入所需的jar包
第二步:敲代码
public class Jxl_NewExcel {
public static void main(String[] args) {
//用数组存表头
String[] title= {"序号","姓名","分院"};
//创建excel文件
File file = new File("d:/jxl_student.xls");
try {
file.createNewFile();
//创建工作薄
WritableWorkbook workbook = Workbook.createWorkbook(file);
//创建一个sheet页
WritableSheet sheet = workbook.createSheet("1101班", 0);//页签名0
Label label2 = null;
/**
* @param 第一行设置列名
*/
for( int i=0; i< title.length; i++ ) {
label2 = new Label(i,0,title[i]);
sheet.addCell(label2);
}
//追加数据
for( int i=1; i<10; i++) {
//0表示第一行,i表示第一列
label2 = new Label(0,i,"1"+i);
sheet.addCell(label2);
label2 = new Label(1,i,"姓名"+i);
sheet.addCell(label2);
label2 = new Label(2,i,"软件分院");
sheet.addCell(label2);
}
/**
* 写入数据
*/
workbook.write();
workbook.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
第三步:效果图
恭喜你,学会了新技能 Jxl 创建Excel