- 浏览: 59691 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
cherry23415:
乌鱼乌鱼[img][/img]
springMVC支持上传下载(转) -
nanali32:
返回值是自己定义的啊,还有相等的情况未写!
java日期比较
jxl读写excel常见操作搜集整理(转载)
import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import jxl.Cell;
import jxl.CellType;
import jxl.DateCell;
import jxl.Range;
import jxl.Sheet;
import jxl.Workbook;
import jxl.WorkbookSettings;
import jxl.format.Alignment;
import jxl.format.Border;
import jxl.format.BorderLineStyle;
import jxl.format.CellFormat;
import jxl.format.Colour;
import jxl.format.UnderlineStyle;
import jxl.format.VerticalAlignment;
import jxl.write.Formula;
import jxl.write.Label;
import jxl.write.Number;
import jxl.write.NumberFormat;
import jxl.write.WritableCell;
import jxl.write.WritableCellFeatures;
import jxl.write.WritableCellFormat;
import jxl.write.WritableFont;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;
import jxl.write.biff.RowsExceededException;
public class WriteExcelTest {
static HashMap map = new HashMap();
public static void main(String[] args) {
try {
// copyDateFormat(new File("c:\\a.xls"), 0, "c:\\copy of a.xls");
// writeExcelUseFormat("c:\\format.xls","test");
// buildNewFormTemplete(new File("c:/templete.xls"),new File( "c:/buildNewFormTemplete.xls"));
// modifyDirectly1(new File("c:/templete.xls"));
// modifyDirectly2(new File("c:/templete.xls"));
copyDateAndFormat(new File("c:/a.xls"), 0, "c:/a2.xls");
} catch (Exception e) {
// TODO 自动生成 catch 块
e.printStackTrace();
}
}
public static void modifyDirectly2(File inputFile) throws Exception{
Workbook w1 = Workbook.getWorkbook(inputFile);
WritableWorkbook w2 = Workbook.createWorkbook(inputFile, w1);
WritableSheet sheet = w2.getSheet(0);
WritableCell cell = null;
CellFormat cf = null;
//加粗
cell = sheet.getWritableCell(0,0);
WritableFont bold = new WritableFont(WritableFont.ARIAL,
WritableFont.DEFAULT_POINT_SIZE,
WritableFont.BOLD);
cf = new WritableCellFormat(bold);
cell.setCellFormat(cf);
//设置下划线
cell = sheet.getWritableCell(0,1);
WritableFont underline = new WritableFont(WritableFont.ARIAL,
WritableFont.DEFAULT_POINT_SIZE,
WritableFont.NO_BOLD,
false,
UnderlineStyle.SINGLE);
cf = new WritableCellFormat(underline);
cell.setCellFormat(cf);
//直截添加可以覆盖掉
setCellValueDirectly(sheet,sheet.getCell(0, 2),new Double(4),CellType.NUMBER);
w2.write();
w2.close();
}
public static void modifyDirectly1(File file) {
try{
// Excel获得文件
Workbook wb = Workbook.getWorkbook(file);
// 打开一个文件的副本,并且指定数据写回到原文件
WritableWorkbook book = Workbook.createWorkbook(file,
wb);
WritableSheet sheet0 = book.getSheet(0);
sheet0.addCell(new Label(0, 1, "陈小稳"));
// 添加一个工作表
WritableSheet sheet = book.createSheet( " 第二页 " , 1 );
sheet.addCell( new Label( 0 , 0 , " 第二页的测试数据 " ));
book.write();
book.close();
} catch (Exception e) {
System.out.println(e);
}
}
public static void buildNewFormTemplete(File inputFile, File outputFile){
try{
// Excel获得文件
Workbook wb = Workbook.getWorkbook(inputFile);
// 打开一个文件的副本,并且指定数据写回到原文件
WritableWorkbook book = Workbook.createWorkbook(outputFile,
wb);
WritableSheet sheet0 = book.getSheet(0);
sheet0.addCell(new Label(0, 1, "陈小稳"));
// 添加一个工作表
WritableSheet sheet = book.createSheet( " 第二页 " , 1 );
sheet.addCell( new Label( 0 , 0 , " 第二页的测试数据 " ));
book.write();
book.close();
} catch (Exception e) {
System.out.println(e);
}
}
public static void copyDateAndFormat(File inputFile, int inputFileSheetIndex, String outputFilePath) throws Exception {
Workbook book = null;
Cell cell = null;
//1.避免乱码的设置
WorkbookSettings setting = new WorkbookSettings();
java.util.Locale locale = new java.util.Locale("zh","CN");
setting.setLocale(locale);
setting.setEncoding("ISO-8859-1");
book = Workbook.getWorkbook(inputFile, setting);
Sheet readonlySheet = book.getSheet(inputFileSheetIndex);
OutputStream os=new FileOutputStream(outputFilePath);//输出的Excel文件URL
WritableWorkbook wwb = Workbook.createWorkbook(os);//创建可写工作薄
WritableSheet writableSheet = wwb.createSheet(readonlySheet.getName(), 0);//创建可写工作表
//2.誊写不同数据格式的数据
for (int rowIndex = 0; rowIndex < readonlySheet.getRows(); rowIndex++) {
for (int colIndex = 0; colIndex < readonlySheet.getColumns(); colIndex++) {
cell = readonlySheet.getCell(colIndex, rowIndex);
//A2B2为合并的单元格,A2有内容,B2为空
// if(colIndex == 0 && rowIndex == 1){
// System.out.println(colIndex + "," + rowIndex + " type:" + cell.getType() +" :" + cell.getContents());
// }
//【有各种设置格式】
if(cell.getType() == CellType.DATE || cell.getType() == CellType.DATE_FORMULA){
writableSheet.addCell(
new jxl.write.DateTime(
colIndex
, rowIndex
, ((DateCell)cell).getDate(),
new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else if(cell.getType() == CellType.NUMBER || cell.getType() == CellType.NUMBER_FORMULA){
writableSheet.addCell(
new jxl.write.Number(
colIndex
, rowIndex
, ((jxl.NumberCell)cell).getValue(),
new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else if(cell.getType() == CellType.EMPTY){
//空的以及合并单元格中第一列外的
// System.out.println("EMPTY:"+cell.getContents());
// System.err.println("空单元格 at " + colIndex + "," + rowIndex +" content:" + cell.getContents());
}else if(cell.getType() == CellType.LABEL || cell.getType() == CellType.STRING_FORMULA){
writableSheet.addCell(
new Label(
colIndex
, rowIndex
, cell.getContents()
, new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else{
System.err.println("其它单元格类型:" + cell.getType() + " at " + colIndex + "," + rowIndex +" content:" + cell.getContents());
}
// if(cell.getType() == CellType.STRING_FORMULA){
// System.err.println(colIndex + "," + rowIndex +":" + cell.getContents() +" type:" + cell.getType());
// }
}
}
//3.处理合并单元格的事情(复制合并单元格格式)
Range[] range = readonlySheet.getMergedCells();
for (int i = 0; i < range.length; i++) {
// System.out.println("第"+i+"处合并的单元格:"
// +",getTopLeft="+range[i].getTopLeft().getColumn()
// +","+range[i].getTopLeft().getRow()
// +",getBottomRight="+range[i].getBottomRight().getColumn()
// +","+range[i].getBottomRight().getRow()
// );
//topleftXIndex, topleftYIndex, bottomRightXIndex, bottomRightYIndex
writableSheet.mergeCells(
range[i].getTopLeft().getColumn(),
range[i].getTopLeft().getRow(),
range[i].getBottomRight().getColumn(),
range[i].getBottomRight().getRow()
);
}
//4.设置行列高宽
for (int colIndex = 0; colIndex < readonlySheet.getColumns(); colIndex++) {
writableSheet.setColumnView(colIndex,readonlySheet.getColumnView(colIndex));
}
for (int rowIndex = 0; rowIndex < readonlySheet.getRows(); rowIndex++) {
writableSheet.setRowView(rowIndex,readonlySheet.getRowView(rowIndex));
}
wwb.write();
wwb.close();
os.close();
}
public static void writeExcelUseFormat(String outputFilePath,String outputFileSheetName) throws Exception{
OutputStream os=new FileOutputStream(outputFilePath);//输出的Excel文件URL
WritableWorkbook wwb = Workbook.createWorkbook(os);//创建可写工作薄
WritableSheet sheet = wwb.createSheet(outputFileSheetName, 0);//创建可写工作表
sheet.addCell(new Label(0, 0, "号码"));
sheet.addCell(new Label(1, 0, "有效期"));
//1.写入时间的数据格式
jxl.write.DateFormat df = new jxl.write.DateFormat("yyyy-MM-dd");
jxl.write.WritableCellFormat wcfDF = new jxl.write.WritableCellFormat(df);
jxl.write.DateTime labelDTF = new jxl.write.DateTime(1, 1, new Date(), wcfDF); //自定义格式
sheet.addCell(labelDTF);
//2.字体样式
// WritableFont()方法里参数说明:
// 这个方法算是一个容器,可以放进去好多属性
// 第一个: TIMES是字体大小,他写的是18
// 第二个: BOLD是判断是否为斜体,选择true时为斜体
// 第三个: ARIAL
// 第四个: UnderlineStyle.NO_UNDERLINE 下划线
// 第五个: jxl.format.Colour.RED 字体颜色是红色的
jxl.write.WritableFont wf = new jxl.write.WritableFont(WritableFont.TIMES, 18, WritableFont.BOLD, true);
jxl.write.WritableCellFormat wcfF = new jxl.write.WritableCellFormat(wf);
wcfF.setWrap(true);//自动换行
wcfF.setAlignment(jxl.format.Alignment.CENTRE);//把水平对齐方式指定为居中
wcfF.setVerticalAlignment(jxl.format.VerticalAlignment.CENTRE);//把垂直对齐方式指定为居中
jxl.write.Label labelC = new jxl.write.Label(0, 1, "This is a Label cell", wcfF);
sheet.addCell(labelC);
//3.添加带有formatting的Number对象
jxl.write.NumberFormat nf = new jxl.write.NumberFormat("#.##");
jxl.write.WritableCellFormat wcfN = new jxl.write.WritableCellFormat(nf);
jxl.write.Number labelNF = new jxl.write.Number(0, 2, 3.1415926, wcfN);
sheet.addCell(labelNF);
//4.添加Boolean对象
jxl.write.Boolean labelB = new jxl.write.Boolean(0, 3, false);
sheet.addCell(labelB);
//5.设置一个注解
WritableCellFeatures cellFeatures = new WritableCellFeatures();
cellFeatures.setComment("添加Boolean对象");
labelB.setCellFeatures(cellFeatures);
//6.单元格内换行
WritableCellFormat wrappedText = new WritableCellFormat
(WritableWorkbook.ARIAL_10_PT);
wrappedText.setWrap(true);//可换行的label样式
Label label = new Label(4, 0, "测试,\012测试。。。",wrappedText); // "\012"强制换行
sheet.addCell(label);
//7.数字的公式计算
Number n = new jxl.write.Number(0,9,4.5);//A10
sheet.addCell(n);
n = new Number(1,9, ;//B10
sheet.addCell(n);
NumberFormat dp3 = new NumberFormat("#.###"); //设置单元格里面的数字格式
WritableCellFormat dp3cell = new WritableCellFormat(dp3);
dp3cell.setWrap(true);
Formula f = new Formula(2, 9, "(a10+b10)/2", dp3cell); //设置C10公式
sheet.addCell(f);
f = new Formula(3, 9, "SUM(A10:B10)", dp3cell);//设置D10公式
sheet.addCell(f);
//8.设置sheet的样式
sheet.getSettings().setProtected(true); //设置xls的保护,单元格为只读的
sheet.getSettings().setPassword("123"); //设置xls的密码
sheet.getSettings().setDefaultColumnWidth(10); //设置列的默认宽度,2cm左右
sheet.setRowView(3,200);//设置第4行高度
sheet.setRowView(2,false);// 这样可以自动把行高扩展
sheet.setColumnView(0 , 300);//设置第1列宽度,6cm左右
sheet.mergeCells(0 , 5, 1, 7);//合并单元格:合并A6B8也就是1列6行 与 2列7行 之间的矩形
//9.设置边框
drawRect(sheet, 5, 6, 7, 6,BorderLineStyle.THICK, Colour.BLACK, null);
wwb.write();
wwb.close();
os.close();
}
public static void drawRect(WritableSheet sheet, int x, int y, int width, int height,BorderLineStyle style,Colour BorderColor, Colour bgColor) throws WriteException {
for(int w = 0; w < width; w++){
for(int h = 0; h < height; h ++) {
WritableCellFormat alignStyle = new WritableCellFormat(); //单元格样式
alignStyle.setAlignment(Alignment.CENTRE); //设置对齐方式
alignStyle.setVerticalAlignment(VerticalAlignment.CENTRE);//设置对齐方式
if(h == 0)//画上
alignStyle.setBorder(Border.TOP, style, BorderColor);//设置边框的颜色和样式
if(w == 0)//画左
alignStyle.setBorder(Border.LEFT, style, BorderColor);//设置边框的颜色和样式
if(w == width - 1)//画右
alignStyle.setBorder(Border.RIGHT, style, BorderColor);//设置边框的颜色和样式
if(h == height -1)//画下
alignStyle.setBorder(Border.BOTTOM, style, BorderColor);//设置边框的颜色和样式
//drawLine(sheet, x, y, Border.BOTTOM);
if(bgColor != null)
alignStyle.setBackground(bgColor); //背静色
Label mergelabel = new Label(x, y, "", alignStyle);
//topleftXIndex, topleftYIndex, bottomRightXIndex, bottomRightYIndex
//sheet.mergeCells(2, 5, 10, 10);
sheet.addCell(mergelabel);
y++;
}
y -= height;
x++;
}
}
public static ArrayList<String> sampleReadExcel(File inputFile, int inputFileSheetIndex) throws Exception {
ArrayList<String> list = new ArrayList<String>();
Workbook book = null;
Cell cell = null;
//避免乱码的设置
WorkbookSettings setting = new WorkbookSettings();
java.util.Locale locale = new java.util.Locale("zh","CN");
setting.setLocale(locale);
setting.setEncoding("ISO-8859-1");
book = Workbook.getWorkbook(inputFile, setting);
Sheet sheet = book.getSheet(inputFileSheetIndex);
for (int rowIndex = 0; rowIndex < sheet.getRows(); rowIndex++) {// Excel第一行为表头,因此J初值设为1
for (int colIndex = 0; colIndex < sheet.getColumns(); colIndex++) {// 只需从Excel中取出2列
cell = sheet.getCell(colIndex, rowIndex);
list.add(cell.getContents());
}
}
//【问题:如果在实际部署的时候没有写下面这句是否会导致不断消耗掉服务器的内存?jxl里面有个ReadWrite.java没有关闭读的,只关闭了写的】
book.close();
return list;
}
public static void setCellValueDirectly(WritableSheet sheet, Cell cell, Object newValue, CellType type) throws Exception{
if(type == CellType.DATE || type == CellType.DATE_FORMULA){
sheet.addCell(
new jxl.write.DateTime(
cell.getColumn()
, cell.getRow()
, (Date)newValue,
new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else if(type == CellType.NUMBER || type == CellType.NUMBER_FORMULA){
sheet.addCell(
new jxl.write.Number(
cell.getColumn()
, cell.getRow()
, ((Double)newValue).doubleValue(),
new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else if(type == CellType.LABEL || type == CellType.STRING_FORMULA){
sheet.addCell(
new Label(
cell.getColumn()
, cell.getRow()
, (String)newValue
, new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else{
throw new Exception("不支持的其它单元格类型:"+type);
// System.err.println("不支持的其它单元格类型:" + cell.getType() + " at " + cell.getColumn() + "," + cell.getRow() +" current content:" + cell.getContents());
}
}
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import jxl.Cell;
import jxl.CellType;
import jxl.DateCell;
import jxl.Range;
import jxl.Sheet;
import jxl.Workbook;
import jxl.WorkbookSettings;
import jxl.format.Alignment;
import jxl.format.Border;
import jxl.format.BorderLineStyle;
import jxl.format.CellFormat;
import jxl.format.Colour;
import jxl.format.UnderlineStyle;
import jxl.format.VerticalAlignment;
import jxl.write.Formula;
import jxl.write.Label;
import jxl.write.Number;
import jxl.write.NumberFormat;
import jxl.write.WritableCell;
import jxl.write.WritableCellFeatures;
import jxl.write.WritableCellFormat;
import jxl.write.WritableFont;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;
import jxl.write.biff.RowsExceededException;
public class WriteExcelTest {
static HashMap map = new HashMap();
public static void main(String[] args) {
try {
// copyDateFormat(new File("c:\\a.xls"), 0, "c:\\copy of a.xls");
// writeExcelUseFormat("c:\\format.xls","test");
// buildNewFormTemplete(new File("c:/templete.xls"),new File( "c:/buildNewFormTemplete.xls"));
// modifyDirectly1(new File("c:/templete.xls"));
// modifyDirectly2(new File("c:/templete.xls"));
copyDateAndFormat(new File("c:/a.xls"), 0, "c:/a2.xls");
} catch (Exception e) {
// TODO 自动生成 catch 块
e.printStackTrace();
}
}
public static void modifyDirectly2(File inputFile) throws Exception{
Workbook w1 = Workbook.getWorkbook(inputFile);
WritableWorkbook w2 = Workbook.createWorkbook(inputFile, w1);
WritableSheet sheet = w2.getSheet(0);
WritableCell cell = null;
CellFormat cf = null;
//加粗
cell = sheet.getWritableCell(0,0);
WritableFont bold = new WritableFont(WritableFont.ARIAL,
WritableFont.DEFAULT_POINT_SIZE,
WritableFont.BOLD);
cf = new WritableCellFormat(bold);
cell.setCellFormat(cf);
//设置下划线
cell = sheet.getWritableCell(0,1);
WritableFont underline = new WritableFont(WritableFont.ARIAL,
WritableFont.DEFAULT_POINT_SIZE,
WritableFont.NO_BOLD,
false,
UnderlineStyle.SINGLE);
cf = new WritableCellFormat(underline);
cell.setCellFormat(cf);
//直截添加可以覆盖掉
setCellValueDirectly(sheet,sheet.getCell(0, 2),new Double(4),CellType.NUMBER);
w2.write();
w2.close();
}
public static void modifyDirectly1(File file) {
try{
// Excel获得文件
Workbook wb = Workbook.getWorkbook(file);
// 打开一个文件的副本,并且指定数据写回到原文件
WritableWorkbook book = Workbook.createWorkbook(file,
wb);
WritableSheet sheet0 = book.getSheet(0);
sheet0.addCell(new Label(0, 1, "陈小稳"));
// 添加一个工作表
WritableSheet sheet = book.createSheet( " 第二页 " , 1 );
sheet.addCell( new Label( 0 , 0 , " 第二页的测试数据 " ));
book.write();
book.close();
} catch (Exception e) {
System.out.println(e);
}
}
public static void buildNewFormTemplete(File inputFile, File outputFile){
try{
// Excel获得文件
Workbook wb = Workbook.getWorkbook(inputFile);
// 打开一个文件的副本,并且指定数据写回到原文件
WritableWorkbook book = Workbook.createWorkbook(outputFile,
wb);
WritableSheet sheet0 = book.getSheet(0);
sheet0.addCell(new Label(0, 1, "陈小稳"));
// 添加一个工作表
WritableSheet sheet = book.createSheet( " 第二页 " , 1 );
sheet.addCell( new Label( 0 , 0 , " 第二页的测试数据 " ));
book.write();
book.close();
} catch (Exception e) {
System.out.println(e);
}
}
public static void copyDateAndFormat(File inputFile, int inputFileSheetIndex, String outputFilePath) throws Exception {
Workbook book = null;
Cell cell = null;
//1.避免乱码的设置
WorkbookSettings setting = new WorkbookSettings();
java.util.Locale locale = new java.util.Locale("zh","CN");
setting.setLocale(locale);
setting.setEncoding("ISO-8859-1");
book = Workbook.getWorkbook(inputFile, setting);
Sheet readonlySheet = book.getSheet(inputFileSheetIndex);
OutputStream os=new FileOutputStream(outputFilePath);//输出的Excel文件URL
WritableWorkbook wwb = Workbook.createWorkbook(os);//创建可写工作薄
WritableSheet writableSheet = wwb.createSheet(readonlySheet.getName(), 0);//创建可写工作表
//2.誊写不同数据格式的数据
for (int rowIndex = 0; rowIndex < readonlySheet.getRows(); rowIndex++) {
for (int colIndex = 0; colIndex < readonlySheet.getColumns(); colIndex++) {
cell = readonlySheet.getCell(colIndex, rowIndex);
//A2B2为合并的单元格,A2有内容,B2为空
// if(colIndex == 0 && rowIndex == 1){
// System.out.println(colIndex + "," + rowIndex + " type:" + cell.getType() +" :" + cell.getContents());
// }
//【有各种设置格式】
if(cell.getType() == CellType.DATE || cell.getType() == CellType.DATE_FORMULA){
writableSheet.addCell(
new jxl.write.DateTime(
colIndex
, rowIndex
, ((DateCell)cell).getDate(),
new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else if(cell.getType() == CellType.NUMBER || cell.getType() == CellType.NUMBER_FORMULA){
writableSheet.addCell(
new jxl.write.Number(
colIndex
, rowIndex
, ((jxl.NumberCell)cell).getValue(),
new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else if(cell.getType() == CellType.EMPTY){
//空的以及合并单元格中第一列外的
// System.out.println("EMPTY:"+cell.getContents());
// System.err.println("空单元格 at " + colIndex + "," + rowIndex +" content:" + cell.getContents());
}else if(cell.getType() == CellType.LABEL || cell.getType() == CellType.STRING_FORMULA){
writableSheet.addCell(
new Label(
colIndex
, rowIndex
, cell.getContents()
, new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else{
System.err.println("其它单元格类型:" + cell.getType() + " at " + colIndex + "," + rowIndex +" content:" + cell.getContents());
}
// if(cell.getType() == CellType.STRING_FORMULA){
// System.err.println(colIndex + "," + rowIndex +":" + cell.getContents() +" type:" + cell.getType());
// }
}
}
//3.处理合并单元格的事情(复制合并单元格格式)
Range[] range = readonlySheet.getMergedCells();
for (int i = 0; i < range.length; i++) {
// System.out.println("第"+i+"处合并的单元格:"
// +",getTopLeft="+range[i].getTopLeft().getColumn()
// +","+range[i].getTopLeft().getRow()
// +",getBottomRight="+range[i].getBottomRight().getColumn()
// +","+range[i].getBottomRight().getRow()
// );
//topleftXIndex, topleftYIndex, bottomRightXIndex, bottomRightYIndex
writableSheet.mergeCells(
range[i].getTopLeft().getColumn(),
range[i].getTopLeft().getRow(),
range[i].getBottomRight().getColumn(),
range[i].getBottomRight().getRow()
);
}
//4.设置行列高宽
for (int colIndex = 0; colIndex < readonlySheet.getColumns(); colIndex++) {
writableSheet.setColumnView(colIndex,readonlySheet.getColumnView(colIndex));
}
for (int rowIndex = 0; rowIndex < readonlySheet.getRows(); rowIndex++) {
writableSheet.setRowView(rowIndex,readonlySheet.getRowView(rowIndex));
}
wwb.write();
wwb.close();
os.close();
}
public static void writeExcelUseFormat(String outputFilePath,String outputFileSheetName) throws Exception{
OutputStream os=new FileOutputStream(outputFilePath);//输出的Excel文件URL
WritableWorkbook wwb = Workbook.createWorkbook(os);//创建可写工作薄
WritableSheet sheet = wwb.createSheet(outputFileSheetName, 0);//创建可写工作表
sheet.addCell(new Label(0, 0, "号码"));
sheet.addCell(new Label(1, 0, "有效期"));
//1.写入时间的数据格式
jxl.write.DateFormat df = new jxl.write.DateFormat("yyyy-MM-dd");
jxl.write.WritableCellFormat wcfDF = new jxl.write.WritableCellFormat(df);
jxl.write.DateTime labelDTF = new jxl.write.DateTime(1, 1, new Date(), wcfDF); //自定义格式
sheet.addCell(labelDTF);
//2.字体样式
// WritableFont()方法里参数说明:
// 这个方法算是一个容器,可以放进去好多属性
// 第一个: TIMES是字体大小,他写的是18
// 第二个: BOLD是判断是否为斜体,选择true时为斜体
// 第三个: ARIAL
// 第四个: UnderlineStyle.NO_UNDERLINE 下划线
// 第五个: jxl.format.Colour.RED 字体颜色是红色的
jxl.write.WritableFont wf = new jxl.write.WritableFont(WritableFont.TIMES, 18, WritableFont.BOLD, true);
jxl.write.WritableCellFormat wcfF = new jxl.write.WritableCellFormat(wf);
wcfF.setWrap(true);//自动换行
wcfF.setAlignment(jxl.format.Alignment.CENTRE);//把水平对齐方式指定为居中
wcfF.setVerticalAlignment(jxl.format.VerticalAlignment.CENTRE);//把垂直对齐方式指定为居中
jxl.write.Label labelC = new jxl.write.Label(0, 1, "This is a Label cell", wcfF);
sheet.addCell(labelC);
//3.添加带有formatting的Number对象
jxl.write.NumberFormat nf = new jxl.write.NumberFormat("#.##");
jxl.write.WritableCellFormat wcfN = new jxl.write.WritableCellFormat(nf);
jxl.write.Number labelNF = new jxl.write.Number(0, 2, 3.1415926, wcfN);
sheet.addCell(labelNF);
//4.添加Boolean对象
jxl.write.Boolean labelB = new jxl.write.Boolean(0, 3, false);
sheet.addCell(labelB);
//5.设置一个注解
WritableCellFeatures cellFeatures = new WritableCellFeatures();
cellFeatures.setComment("添加Boolean对象");
labelB.setCellFeatures(cellFeatures);
//6.单元格内换行
WritableCellFormat wrappedText = new WritableCellFormat
(WritableWorkbook.ARIAL_10_PT);
wrappedText.setWrap(true);//可换行的label样式
Label label = new Label(4, 0, "测试,\012测试。。。",wrappedText); // "\012"强制换行
sheet.addCell(label);
//7.数字的公式计算
Number n = new jxl.write.Number(0,9,4.5);//A10
sheet.addCell(n);
n = new Number(1,9, ;//B10
sheet.addCell(n);
NumberFormat dp3 = new NumberFormat("#.###"); //设置单元格里面的数字格式
WritableCellFormat dp3cell = new WritableCellFormat(dp3);
dp3cell.setWrap(true);
Formula f = new Formula(2, 9, "(a10+b10)/2", dp3cell); //设置C10公式
sheet.addCell(f);
f = new Formula(3, 9, "SUM(A10:B10)", dp3cell);//设置D10公式
sheet.addCell(f);
//8.设置sheet的样式
sheet.getSettings().setProtected(true); //设置xls的保护,单元格为只读的
sheet.getSettings().setPassword("123"); //设置xls的密码
sheet.getSettings().setDefaultColumnWidth(10); //设置列的默认宽度,2cm左右
sheet.setRowView(3,200);//设置第4行高度
sheet.setRowView(2,false);// 这样可以自动把行高扩展
sheet.setColumnView(0 , 300);//设置第1列宽度,6cm左右
sheet.mergeCells(0 , 5, 1, 7);//合并单元格:合并A6B8也就是1列6行 与 2列7行 之间的矩形
//9.设置边框
drawRect(sheet, 5, 6, 7, 6,BorderLineStyle.THICK, Colour.BLACK, null);
wwb.write();
wwb.close();
os.close();
}
public static void drawRect(WritableSheet sheet, int x, int y, int width, int height,BorderLineStyle style,Colour BorderColor, Colour bgColor) throws WriteException {
for(int w = 0; w < width; w++){
for(int h = 0; h < height; h ++) {
WritableCellFormat alignStyle = new WritableCellFormat(); //单元格样式
alignStyle.setAlignment(Alignment.CENTRE); //设置对齐方式
alignStyle.setVerticalAlignment(VerticalAlignment.CENTRE);//设置对齐方式
if(h == 0)//画上
alignStyle.setBorder(Border.TOP, style, BorderColor);//设置边框的颜色和样式
if(w == 0)//画左
alignStyle.setBorder(Border.LEFT, style, BorderColor);//设置边框的颜色和样式
if(w == width - 1)//画右
alignStyle.setBorder(Border.RIGHT, style, BorderColor);//设置边框的颜色和样式
if(h == height -1)//画下
alignStyle.setBorder(Border.BOTTOM, style, BorderColor);//设置边框的颜色和样式
//drawLine(sheet, x, y, Border.BOTTOM);
if(bgColor != null)
alignStyle.setBackground(bgColor); //背静色
Label mergelabel = new Label(x, y, "", alignStyle);
//topleftXIndex, topleftYIndex, bottomRightXIndex, bottomRightYIndex
//sheet.mergeCells(2, 5, 10, 10);
sheet.addCell(mergelabel);
y++;
}
y -= height;
x++;
}
}
public static ArrayList<String> sampleReadExcel(File inputFile, int inputFileSheetIndex) throws Exception {
ArrayList<String> list = new ArrayList<String>();
Workbook book = null;
Cell cell = null;
//避免乱码的设置
WorkbookSettings setting = new WorkbookSettings();
java.util.Locale locale = new java.util.Locale("zh","CN");
setting.setLocale(locale);
setting.setEncoding("ISO-8859-1");
book = Workbook.getWorkbook(inputFile, setting);
Sheet sheet = book.getSheet(inputFileSheetIndex);
for (int rowIndex = 0; rowIndex < sheet.getRows(); rowIndex++) {// Excel第一行为表头,因此J初值设为1
for (int colIndex = 0; colIndex < sheet.getColumns(); colIndex++) {// 只需从Excel中取出2列
cell = sheet.getCell(colIndex, rowIndex);
list.add(cell.getContents());
}
}
//【问题:如果在实际部署的时候没有写下面这句是否会导致不断消耗掉服务器的内存?jxl里面有个ReadWrite.java没有关闭读的,只关闭了写的】
book.close();
return list;
}
public static void setCellValueDirectly(WritableSheet sheet, Cell cell, Object newValue, CellType type) throws Exception{
if(type == CellType.DATE || type == CellType.DATE_FORMULA){
sheet.addCell(
new jxl.write.DateTime(
cell.getColumn()
, cell.getRow()
, (Date)newValue,
new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else if(type == CellType.NUMBER || type == CellType.NUMBER_FORMULA){
sheet.addCell(
new jxl.write.Number(
cell.getColumn()
, cell.getRow()
, ((Double)newValue).doubleValue(),
new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else if(type == CellType.LABEL || type == CellType.STRING_FORMULA){
sheet.addCell(
new Label(
cell.getColumn()
, cell.getRow()
, (String)newValue
, new jxl.write.WritableCellFormat(
cell.getCellFormat()
)
)
);
}else{
throw new Exception("不支持的其它单元格类型:"+type);
// System.err.println("不支持的其它单元格类型:" + cell.getType() + " at " + cell.getColumn() + "," + cell.getRow() +" current content:" + cell.getContents());
}
}
相关推荐
这个文档将详细介绍使用`jxl`库进行Excel文件操作的一些常见方法和技巧。 首先,安装`jxl`库非常简单,只需将`jxl.jar`文件添加到项目的类路径中即可。在Maven项目中,可以在pom.xml文件中添加以下依赖: ```xml ...
- JXL是一个开源的Java库,用于读写Excel文件。 - 官方主页:http://www.andykhan.com/jexcelapi/ - 可以通过`java -jar jxl.jar -xml`或`java -jar jxl.jar -csv`命令以XML或CSV格式查看Excel文件。 2. **核心...
1. **jxl.jar**:这是JXL的主要库文件,包含了所有必要的类和方法来读写Excel文件。 2. **README**或**Documentation**:包含有关如何使用JXL库的基本指南和示例。 3. **Examples**:可能包含一些Java源代码示例,...
JXL是一个Java库,它允许开发人员读写Microsoft Excel文件,为处理电子表格数据提供了便利。在这个场景中,我们可能有一个预先设定格式和结构的模板Excel文件,然后通过编程方式将动态数据填入到模板中,生成新的...
描述中提到的"jxl"是Java Excel API,是一个开源库,允许Java程序员读写Microsoft Excel文件。在本项目中,JXL可能被用来实现对Excel数据的增删改查操作。例如,当用户通过注册页面提交信息时,这些信息可能会被保存...
标题中的"jxl.jar"指的是Java Excel API,这是一个开源库,允许Java开发者读写Microsoft Excel文件。这个库在处理大量数据并需要与Excel格式交互时非常有用,比如生成报告、导出数据等。jxl.jar的版本是2.6.3,这...
4. **JXL库**:JXL是Java的一个开源库,用于读写Microsoft Excel文件。尽管我们是在JavaScript环境中工作,但我们可以利用服务器端的Java来使用JXL,然后将生成的Excel文件发送回客户端。 接下来,我们将分步骤介绍...
jxl提供了丰富的API来读写工作表,单元格,公式,样式等。 3. **读取DOC和PPT文件**: 使用Apache POI,你可以打开一个现有的DOC或PPT文件,然后遍历其内容。例如,对于DOC,你可以获取段落、句子和字体样式;对于...
jxl 是一个流行的开源Java库,专门用于读写Microsoft Excel文件。通过jxl,开发者可以轻松地创建新的Excel工作簿,添加工作表,插入数据,甚至进行格式化,如设置单元格样式、颜色和公式。这对于需要导出数据到Excel...
6. `jxl-2.6.3.jar`是JExcelApi,一个用于读写Microsoft Excel文件的Java库。它允许开发者在Java程序中处理Excel工作簿。 7. `jos-i-res.jar`和`jos-i-purview.jar`看起来像是特定项目的一部分,"jos"可能是项目...
16. **jxl.jar**:用于读写Excel文件的库。 17. **代码复用**:遵循设计模式,如装饰者模式在Java IO包中的应用,以及代码重用的一般原则。 这些知识点涵盖了Java SE的各个方面,从基础API到高级特性和工具,对于...
6. **jxl.jar**:这是 JExcelApi,一个用于读写 Microsoft Excel 文件的 Java 库,可能用于数据导入导出。 7. **log4j-1.2.16.jar**:这是一个广泛使用的日志记录框架,用于收集和管理应用程序的日志信息。 8. **...
项目中提到的"POI"是Apache的一个开源库,用于读写Microsoft Office格式的文件,如Excel,这可能用于处理和分析与水电站相关的数据。"JXL"同样是处理Excel文件的Java库,可能作为POI的替代或者补充。而"Thread"则...