); // 设置对齐方式
/**
* 使用样式的单元格
*/
sheet.addCell(new Label(0, 0, "邮箱asasasasa", wcf)); // 普通的带有定义格式的单元格.../**
* excel图片
*/
sheet.addCell(new Label(0, 3, "展示图片 jxl只支持png格式的", wcf)); // 展示图片标题...sheet.mergeCells(0, 3, 3, 3); // 合并图片标题单元格
File file = new File("shu05.png"); // 获得图片
WritableImage...image = new WritableImage(0, 4, 3, 3, file); // 设置图片显示位置
// 4,4代表图片的高和宽占4个单元格
sheet.addImage(...image); // 加载图片
/**
* excel链接
*/
sheet.addCell(new Label(0, 8, "excel链接测试", wcf)); // 链接标题