import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import jxl.CellView;
import jxl.Workbook;
import jxl.write.Label;
import jxl.write.WritableCellFormat;
import jxl.write.WritableFont;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;
/**
* 类说明
*
* @author nmj
* @email bjahqj@163.com
* @date 2017年5月17日 新建
*/
public class dc {
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
// 设置列宽WritableCellFormat
// 设置单元格自适应
WritableFont fontTitle = new WritableFont(
WritableFont.createFont("宋体"), 12, WritableFont.NO_BOLD);
// fontTitle.setColour(jxl.format.Colour.RED);
WritableCellFormat formatTitle = new WritableCellFormat(fontTitle);
formatTitle.setWrap(true);
CellView c = new CellView();
c.setSize(25 * 256);
c.setFormat(formatTitle);
// 首先创建一个用于保存excel表格的文件
File file = new File("C:\\Users\\nmj\\Desktop\\test.xls");
// 创建一个文件输出流,用于写出表格到本地文件夹
OutputStream out = new FileOutputStream(file);
// 创建一个可读写入的工作薄(相当于创建了一个excel表格。抽象类,不能用new来创建)
WritableWorkbook workbook = Workbook.createWorkbook(out);
// 创建一个新页(一个excel文件可以包含多页哦。参数一:本页名称;参数二:页数,第一页为0)
WritableSheet sheet = workbook.createSheet("第一页", 0);
// 将第一行的样式设置为c
sheet.setColumnView(0, c);
sheet.setColumnView(1, c);
sheet.setColumnView(2, c);
// 添加单元格至本页中
Label cell1 = new Label(0, 0, "一行一列"); // 1行1列
sheet.addCell(cell1);
Label cell2 = new Label(1, 0, "一行二列"); // 1行2列
sheet.addCell(cell2);
Label cell3 = new Label(2, 0, "一行三列"); // 1行3列
sheet.addCell(cell3);
Label cell4 = new Label(1, 1, "二行二列"); // 2行2列
sheet.addCell(cell4);
// 写入Excel工作表
workbook.write();
// 关闭Excel工作表,同时也会关闭IO流,勿忘。
workbook.close();
} catch (WriteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
相关jar下载:http://download.csdn.net/download/nmj2015/9844443
java使用jxl导出excel并单元格自适应
最新推荐文章于 2024-07-31 04:30:45 发布