`

JXL简单操作

阅读更多

package com.wangyu;

import java.io.File;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import jxl.Cell;
import jxl.CellType;
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.VerticalAlignment;
import jxl.write.Formula;
import jxl.write.Label;
import jxl.write.NumberFormat;
import jxl.write.WritableCell;
import jxl.write.WritableCellFeatures;
import jxl.write.WritableCellFormat;
import jxl.write.WritableFont;
import jxl.write.WritableImage;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import jxl.write.WriteException;
import jxl.write.biff.RowsExceededException;


public class JExcelUtils {

	private static final int TITLE_LENGTH = 2;

	// private static final int SHEET_WIDTH = 6;

	/**
	 * 生成Excel文件
	 * 
	 * @param path
	 *            文件路径
	 * @param sheetName
	 *            工作表名称
	 * @param dataTitles
	 *            数据标题
	 */
	public void createExcelFile(String path, String sheetName, String[] dataTitles, String titleName, String logoPath) {
		WritableWorkbook workbook;
		Label label;
		try {

			OutputStream os = new FileOutputStream(path);
			workbook = Workbook.createWorkbook(os);

			WritableSheet sheet = workbook.createSheet(sheetName, 0); // 添加第一个工作表
			initialSheetSetting(sheet);

			
			/*
			 * 报表主标题	合并单元格 通过writablesheet.mergeCells(int x,int y,int m,int n);来实现的
			 * 表示将从第x+1列,y+1行到m+1列,n+1行合并
			 */
			sheet.mergeCells(0, 0, dataTitles.length - 1, 0);
			label = new Label(0, 0, titleName, getDataCellFormat(CellType.STRING_FORMULA, "宋体", 20, Colour.BLUE, Colour.YELLOW));
			sheet.addCell(label);
			
			if (logoPath != null) {
				insertImgCell(sheet, 0, 0, 1, 1, logoPath);
			}
			for (int i = 0; i < dataTitles.length; i++) {
				label = new Label(i, 1, dataTitles[i], getTitleCellFormat());
				// Label(列号,行号,内容,风格)
				sheet.addCell(label);
			}
			List<Person> data = getData();

			for (int i = 0; i < data.size(); i++) {
				Person person = data.get(i);
				insertOneCellData(sheet, 0, i + TITLE_LENGTH, person.getId(), getDataCellFormat(CellType.STRING_FORMULA));
				// 注释 start
				label = new Label(1, i + TITLE_LENGTH, person.getName(), getDataCellFormat(CellType.STRING_FORMULA));
				sheet.addCell(label);
				if ("wangyu".equals(person.getName())) {
					setCellComments(label, "这是个说明!");
				}
				// 注释 end
				if (person.getSex() >= 20) {
					insertOneCellData(sheet, 2, i + TITLE_LENGTH, person.getSex(), getDataCellFormat(CellType.NUMBER, "宋体", 10,
							Colour.YELLOW, Colour.YELLOW));
				} else {
					insertOneCellData(sheet, 2, i + TITLE_LENGTH, person.getSex(), getDataCellFormat(CellType.NUMBER));
				}
				insertOneCellData(sheet, 3, i + TITLE_LENGTH, person.getBirthday(), getDataCellFormat(CellType.DATE));
				// insertFormula(sheet, 5, 1, "C2+D2+E2",
				// getDataCellFormat(CellType.NUMBER_FORMULA));//SUM(C3:E3)
			}

			for (int i = 2; i < dataTitles.length; i++) {
				insertFormulaCell(sheet, i, data.size() + TITLE_LENGTH, 2, data.size() + TITLE_LENGTH,
						getDataCellFormat(CellType.NUMBER_FORMULA));
			}
			insertFormula(sheet, 4, data.size() + TITLE_LENGTH, "C6+D6", getDataCellFormat(CellType.NUMBER_FORMULA));// SUM(C3:E3)

			// 插入一行(1)
			// insertRowData(sheet, 1, new String[] { "200201001", "张三", "100",
			// "60", "100", "260" },
			// getDataCellFormat(CellType.STRING_FORMULA));

			// 插入日期
			// mergeCellsAndInsertData(sheet, 1, 3, 5, 3, new Date(),
			// getDataCellFormat(CellType.DATE));

			workbook.write();
			workbook.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * 初始化表格属性
	 * 
	 * @param sheet
	 */
	public void initialSheetSetting(WritableSheet sheet) {
		try {
			// sheet.getSettings().setProtected(true); //设置xls的保护,单元格为只读的
			sheet.getSettings().setDefaultColumnWidth(10); // 设置列的默认宽度
			// sheet.setRowView(2,false);//行高自动扩展
			// setRowView(int row, int height);--行高
			sheet.setRowView(0, 500);// 列宽
			sheet.setColumnView(0, 20);// 设置第一列宽度
			sheet.setColumnView(1, 20);
			sheet.setColumnView(2, 20);
			sheet.setColumnView(3, 20);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * 插入公式
	 * 
	 * @param sheet
	 * @param col
	 * @param row
	 * @param formula
	 * @param format
	 */
	public void insertFormula(WritableSheet sheet, Integer col, Integer row, String formula, WritableCellFormat format) {
		try {
			Formula f = new Formula(col, row, formula, format);
			sheet.addCell(f);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * 修改公式单元格的值
	 * 
	 * @param dataSheet
	 *            WritableSheet : 工作表
	 * @param col
	 *            int : 列
	 * @param row
	 *            int : 行
	 * @param startPos
	 *            int : 开始位置
	 * @param endPos
	 *            int : 结束位置
	 * @param format
	 * @throws RowsExceededException
	 * @throws WriteException
	 */
	private void insertFormulaCell(WritableSheet dataSheet, int col, int row, int startPos, int endPos, CellFormat format)
			throws RowsExceededException, WriteException {
		String f = getFormula(col, row, startPos, endPos);
		System.out.println(f);
		// 插入公式(只支持插入,不支持修改)
		WritableCell cell = dataSheet.getWritableCell(col, row);
		if (cell.getType() == CellType.EMPTY) {
			// 公式单元格
			Formula lbl = new Formula(col, row, f);
			if (null != format) {
				lbl.setCellFormat(format);
			}
			dataSheet.addCell(lbl);
		} else if (cell.getType() == CellType.STRING_FORMULA) {
			System.out.println("Formula modify not supported!");
		}
	}

	/**
	 * 得到公式
	 * 
	 * @param col
	 *            int : 列
	 * @param row
	 *            int : 行
	 * @param startPos
	 *            int : 开始位置
	 * @param endPos
	 *            int : 结束位置
	 * @return String
	 * @throws RowsExceededException
	 * @throws WriteException
	 */
	private String getFormula(int col, int row, int startPos, int endPos) throws RowsExceededException, WriteException {
		char base = 'A';
		char c1 = base;
		StringBuffer formula = new StringBuffer(128);
		// 组装公式
		formula.append("SUM(");
		if (col <= 25) {
			c1 = (char) (col % 26 + base);
			formula.append(c1).append(startPos).append(":").append(c1).append(endPos).append(")");
		} else if (col > 25) {
			char c2 = (char) ((col - 26) / 26 + base);
			c1 = (char) ((col - 26) % 26 + base);
			formula.append(c2).append(c1).append(startPos).append(":").append(c2).append(c1).append(endPos).append(")");
		}

		return formula.toString();
	}

	/**
	 * 插入一行数据
	 * 
	 * @param sheet
	 *            工作表
	 * @param row
	 *            行号
	 * @param content
	 *            内容
	 * @param format
	 *            风格
	 */
	public void insertRowData(WritableSheet sheet, Integer row, String[] dataArr, WritableCellFormat format) {
		try {
			Label label;
			for (int i = 0; i < dataArr.length; i++) {
				label = new Label(i, row, dataArr[i], format);
				sheet.addCell(label);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * 插入单元格数据
	 * 
	 * @param sheet
	 * @param col
	 * @param row
	 * @param data
	 */
	public void insertOneCellData(WritableSheet sheet, Integer col, Integer row, Object data, WritableCellFormat format) {
		try {
			if (data instanceof Double) {
				jxl.write.Number labelNF = new jxl.write.Number(col, row, (Double) data, format);
				sheet.addCell(labelNF);
			} else if (data instanceof Integer) {
				jxl.write.Number labelNF = new jxl.write.Number(col, row, (Integer) data, format);
				sheet.addCell(labelNF);
			} else if (data instanceof Boolean) {
				jxl.write.Boolean labelB = new jxl.write.Boolean(col, row, (Boolean) data, format);
				sheet.addCell(labelB);
			} else if (data instanceof Date) {
				jxl.write.DateTime labelDT = new jxl.write.DateTime(col, row, (Date) data, format);
				sheet.addCell(labelDT);
				setCellComments(labelDT, "这是个创建表的日期说明!");
			} else {
				Label label = new Label(col, row, data.toString(), format);
				sheet.addCell(label);
			}
		} catch (Exception e) {
			e.printStackTrace();
		}

	}

	/**
	 * 合并单元格,并插入数据
	 * 
	 * @param sheet
	 * @param col_start
	 * @param row_start
	 * @param col_end
	 * @param row_end
	 * @param data
	 * @param format
	 */
	public void mergeCellsAndInsertData(WritableSheet sheet, Integer col_start, Integer row_start, Integer col_end, Integer row_end,
			Object data, WritableCellFormat format) {
		try {
			sheet.mergeCells(col_start, row_start, col_end, row_end);// 左上角到右下角
			insertOneCellData(sheet, col_start, row_start, data, format);
		} catch (Exception e) {
			e.printStackTrace();
		}

	}

	/**
	 * 给单元格加注释
	 * 
	 * @param label
	 * @param comments
	 */
	public void setCellComments(Object label, String comments) {
		WritableCellFeatures cellFeatures = new WritableCellFeatures();
		cellFeatures.setComment(comments);
		if (label instanceof jxl.write.Number) {
			jxl.write.Number num = (jxl.write.Number) label;
			num.setCellFeatures(cellFeatures);
		} else if (label instanceof jxl.write.Boolean) {
			jxl.write.Boolean bool = (jxl.write.Boolean) label;
			bool.setCellFeatures(cellFeatures);
		} else if (label instanceof jxl.write.DateTime) {
			jxl.write.DateTime dt = (jxl.write.DateTime) label;
			dt.setCellFeatures(cellFeatures);
		} else {
			Label _label = (Label) label;
			_label.setCellFeatures(cellFeatures);
		}
	}

	/**
	 * 插入图像到单元格(图像格式只支持png)
	 * 
	 * @param dataSheet
	 *            WritableSheet : 工作表
	 * @param col
	 *            int : 列
	 * @param row
	 *            int : 行
	 * @param width
	 *            int : 宽
	 * @param height
	 *            int : 高
	 * @param imgName
	 *            String : 图像的全路径
	 * @throws RowsExceededException
	 * @throws WriteException
	 */
	private void insertImgCell(WritableSheet dataSheet, int col, int row, int width, int height, String imgName)
			throws RowsExceededException, WriteException {
		File imgFile = new File(imgName);
		WritableImage img = new WritableImage(col, row, width, height, imgFile);
		dataSheet.addImage(img);
	}

	/**
	 * 读取excel
	 * 
	 * @param inputFile
	 * @param inputFileSheetIndex
	 * @throws Exception
	 */
	public ArrayList<String> readDataFromExcel(File inputFile, int inputFileSheetIndex) {
		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");
		try {
			book = Workbook.getWorkbook(inputFile, setting);
		} catch (Exception e) {
			e.printStackTrace();
		}

		Sheet sheet = book.getSheet(inputFileSheetIndex);
		for (int rowIndex = 0; rowIndex < sheet.getRows(); rowIndex++) {// 行
			for (int colIndex = 0; colIndex < sheet.getColumns(); colIndex++) {// 列
				cell = sheet.getCell(colIndex, rowIndex);
				// System.out.println(cell.getContents());
				list.add(cell.getContents());
			}
		}
		book.close();

		return list;
	}

	/**
	 * 得到数据表头格式
	 * 
	 * @return
	 */
	public WritableCellFormat getTitleCellFormat() {
		WritableCellFormat wcf = null;
		try {
			// 字体样式
			WritableFont wf = new WritableFont(WritableFont.TIMES, 12, WritableFont.NO_BOLD, false);// 最后一个为是否italic
			wf.setColour(Colour.RED);
			wcf = new WritableCellFormat(wf);
			// 对齐方式
			wcf.setAlignment(Alignment.CENTRE);
			wcf.setVerticalAlignment(VerticalAlignment.CENTRE);
			// 边框
			wcf.setBorder(Border.ALL, BorderLineStyle.THIN);

			// 背景色
			wcf.setBackground(Colour.LIME);
		} catch (WriteException e) {
			e.printStackTrace();
		}
		return wcf;
	}

	/**
	 * 得到数据格式
	 * 
	 * @return
	 */
	public WritableCellFormat getDataCellFormat(CellType type) {
		WritableCellFormat wcf = null;
		try {
			// 字体样式
			if (type == CellType.NUMBER || type == CellType.NUMBER_FORMULA) {// 数字
				NumberFormat nf = new NumberFormat("#.00");
				wcf = new WritableCellFormat(nf);
			} else if (type == CellType.DATE || type == CellType.DATE_FORMULA) {// 日期
				jxl.write.DateFormat df = new jxl.write.DateFormat("yyyy-MM-dd hh:mm:ss");
				wcf = new jxl.write.WritableCellFormat(df);
			} else {
				WritableFont wf = new WritableFont(WritableFont.TIMES, 10, WritableFont.NO_BOLD, false);// 最后一个为是否italic
				wcf = new WritableCellFormat(wf);
			}
			// 对齐方式
			wcf.setAlignment(Alignment.CENTRE);
			wcf.setVerticalAlignment(VerticalAlignment.CENTRE);
			// 边框
			wcf.setBorder(Border.TOP, BorderLineStyle.THIN);
			wcf.setBorder(Border.LEFT, BorderLineStyle.THIN);
			wcf.setBorder(Border.BOTTOM, BorderLineStyle.THIN);
			wcf.setBorder(Border.RIGHT, BorderLineStyle.THIN);
			// 背景色
			wcf.setBackground(Colour.WHITE);

			wcf.setWrap(true);// 自动换行

		} catch (WriteException e) {
			e.printStackTrace();
		}
		return wcf;
	}

	/**
	 * 得到数据格式
	 * 
	 * @return
	 */
	public WritableCellFormat getDataCellFormat(CellType type, String fontType, int fontSize, jxl.format.Colour fontColour,
			jxl.format.Colour background) {
		WritableCellFormat wcf = null;
		try {
			// 字体样式
			if (type == CellType.NUMBER || type == CellType.NUMBER_FORMULA) {// 数字
				NumberFormat nf = new NumberFormat("#.00");
				wcf = new WritableCellFormat(nf);
			} else if (type == CellType.DATE || type == CellType.DATE_FORMULA) {// 日期
				jxl.write.DateFormat df = new jxl.write.DateFormat("yyyy-MM-dd hh:mm:ss");
				wcf = new jxl.write.WritableCellFormat(df);
			} else {
				WritableFont wf = new WritableFont(WritableFont.createFont(fontType == null ? "宋体" : fontType), fontSize,
						WritableFont.NO_BOLD, false, jxl.format.UnderlineStyle.NO_UNDERLINE, fontColour == null ? jxl.format.Colour.BLACK
								: fontColour);// 其中的false是 是否italic
				wcf = new WritableCellFormat(wf);
			}
			// 对齐方式
			wcf.setAlignment(Alignment.CENTRE);
			wcf.setVerticalAlignment(VerticalAlignment.CENTRE);
			// 边框
			wcf.setBorder(Border.TOP, BorderLineStyle.THIN);
			wcf.setBorder(Border.LEFT, BorderLineStyle.THIN);
			wcf.setBorder(Border.BOTTOM, BorderLineStyle.THIN);
			wcf.setBorder(Border.RIGHT, BorderLineStyle.THIN);
			// 背景色
			wcf.setBackground(background == null ? Colour.BLACK : background);

			wcf.setWrap(true);// 自动换行
		} catch (WriteException e) {
			e.printStackTrace();
		}
		return wcf;
	}

	/**
	 * 打开文件看看
	 * 
	 * @param exePath
	 * @param filePath
	 */
	public void openExcel(String exePath, String filePath) {
		Runtime r = Runtime.getRuntime();
		String cmd[] = { exePath, filePath };
		try {
			r.exec(cmd);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	public static void main(String[] args) {
		String[] titleData = { "编号", "姓名", "年龄", "出生日期" };
		JExcelUtils jxl = new JExcelUtils();
		String filePath = "C:/test.xls";
		jxl.createExcelFile(filePath, "sheet1", titleData, "人员信息表", "D:/LogoPNG.png");

		jxl.readDataFromExcel(new File(filePath), 0);
		jxl.openExcel("C:/Program Files/Microsoft Office/OFFICE12/EXCEL.EXE", filePath);
	}

	public static List<Person> getData() {
		List<Person> list = new ArrayList<Person>();
		Person person1 = new Person();
		person1.setId(1);
		person1.setName("wangyu");
		person1.setSex(20);
		// SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
		// String newdate = sdf.format(new Date());
		person1.setBirthday(new Date(System.currentTimeMillis()));

		Person person2 = new Person();
		person2.setId(2);
		person2.setName("zhangsan");
		person2.setSex(29);
		person2.setBirthday(new Date(System.currentTimeMillis()));

		Person person3 = new Person();
		person3.setId(3);
		person3.setName("lisi");
		person3.setSex(18);
		person3.setBirthday(new Date(System.currentTimeMillis()));
		list.add(person1);
		list.add(person2);
		list.add(person3);
		return list;
	}
}

class Person {
	private int id;
	private String name;
	private int sex;
	private Date birthday;

	public int getId() {
		return id;
	}

	public void setId(int id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public int getSex() {
		return sex;
	}

	public void setSex(int sex) {
		this.sex = sex;
	}

	public Date getBirthday() {
		return birthday;
	}

	public void setBirthday(Date birthday) {
		this.birthday = birthday;
	}
}

分享到:
评论

相关推荐

    jxl操作excel实例,jxl jar包下载

    本文将详细介绍如何使用`jxl`库进行Excel操作,并提供一个简单的实例。 首先,`jxl.jar`是`jxl`库的主要组件,你需要将其添加到你的项目类路径中。这可以通过将`jxl.jar`放在`lib`目录下或在IDE(如Eclipse、...

    jxl及jxlApi

    除了基本的读写操作,jxl还支持更高级的功能,如样式设置(字体、颜色、对齐方式等)、公式计算、图表创建等。例如,你可以使用`WritableFont`和`WritableCellFormat`来设置单元格的字体和格式: ```java ...

    jxl api说明文档

    总之,JXL API为Java开发者提供了一个简单而实用的工具,用于处理Excel文件,无论是读取现有的数据还是创建新的工作簿,都可以通过其丰富的API实现。开发者应根据实际需求,结合提供的文档,充分利用JXL的强大功能。

    jxl操作jxl操作

    ### jxl 操作详解 #### 一、简介 jxl 是一个用于读写 Excel 文件(支持 Excel 95-2000)的 Java 库。它提供了丰富的 API,允许开发者在 Java 应用程序中方便地处理 Excel 文件。jxl 支持的功能包括创建新的 Excel ...

    jxl操作excel.pdf

    Java中的JExcelAPI是一个用于操作Microsoft Excel文件的库,尤其适用于需要在Java应用程序中读取、写入或修改Excel数据的场景。...总的来说,JExcelAPI是一个简单易用的工具,适合处理简单的Excel数据操作任务。

    word操作jxlApi

    本文将详细讲解如何利用JXL API进行Word操作,并探讨相关类、包以及格式化选项。 首先,我们来看JXL库。JXL(Java Excel API)是用于读写Excel文件的一个开源Java库。虽然它的主要功能是处理Excel,但通过一些技巧...

    jxl创建下拉列表

    通过以上介绍和示例代码,我们可以看到使用jxl库创建带有下拉列表的Excel文件是相对简单的。开发者只需要关注几个核心步骤即可实现这一功能。此外,还可以根据实际需求添加更多的样式和特性,使得生成的Excel文件...

    jxl操作excel文件

    ### jxl操作Excel文件知识点详解 ...虽然 jxl 的功能相比 Apache POI 较为简单,但对于简单的 Excel 文件操作而言,它是一个轻量级且高效的解决方案。在实际开发过程中,您可以根据项目的具体需求选择合适的工具。

    使用jxl操作excle文件

    在Java编程环境中,JXL库是一个非常流行的工具,用于读取和写入Excel...这个库在处理简单的Excel数据操作时非常实用,但请注意,对于更复杂的需求,如VBA宏、图表、图片等,可能需要寻找其他更强大的库,如Apache POI。

    jxl操作excel文件例子

    描述中提到的“通过jxl操作excel,简单方便”,暗示了JXL库的一个关键优点——简洁易用的API,使得对Excel文件的操作变得相当直观。 JXL库支持多种Excel文件操作,包括但不限于: 1. **读取Excel文件**:你可以使用...

    jxl.jar完整包

    安装jxl.jar非常简单,只需将其添加到项目的类路径中。在Java代码中,我们可以使用以下方式引入: ```java import jxl.*; ``` 创建Excel文件的第一步是创建`Workbook`对象,可以使用`Workbook.createWorkbook()`...

    Excel文件操作的jxl包

    总的来说,jxl包为Java开发人员提供了一种高效且易于使用的解决方案,使得与Excel文件的交互变得更加简单,极大地提高了开发效率。无论是数据导入导出,还是报表生成,jxl都是一个值得信赖的工具。

    java 中使用jxl API 操作Excel文档

    Java中的JXL库是一个流行的API,它允许开发者方便地读取、写入...通过研究这些实例,你将能熟练掌握Java中使用JXL库进行Excel文件操作的技巧,无论是简单的数据读写,还是复杂的格式设置和公式计算,都将变得易如反掌。

    jxl操作Excel简单

    `jxl操作Excel.docx`文件很可能是JXL的API文档,其中包含了详细的类、方法和参数说明,是开发时的重要参考资源。建议仔细阅读并理解每个类和方法的功能,以便更好地利用JXL进行Excel操作。 9. **JXL标签的用途** ...

    操作excel表格的jxl包

    总结来说,`jxl`库为Java开发者提供了一个简单易用的接口,用于处理Excel文件。无论是读取现有数据,还是创建新的报表,`jxl`都能提供足够的功能。不过,随着技术的发展,现代的Java开发者可能更多地选择如Apache ...

    jxl-2.6.10.jar包

    总之,jxl-2.6.10.jar作为一款强大的Excel操作工具,为Java开发者提供了便利的接口,使得在Java程序中处理Excel文件变得简单易行。熟练掌握jxl库的使用,无疑将提升你在数据处理领域的编程能力。

    jxl技术-excel操作公共类

    这些方法会隐藏底层的复杂性,使得开发者只需调用简单的方法就能完成Excel操作。 6. **高级特性**: JXL还支持更多高级功能,如设置单元格格式(字体、颜色、对齐方式等),处理日期和时间,以及合并单元格。封装...

    jxl.jar 包含jxl源码 API

    **jxl.jar 知识点详解** `jxl.jar` 是一个用于...包含的源码增强了学习和定制的可能性,而成熟的 API 设计使得实际操作变得简单高效。无论你是要读取数据、进行数据分析,还是生成报告,jxl 都是一个值得信赖的选择。

Global site tag (gtag.js) - Google Analytics