一、jxl.Workbook(读取Excel文件)
//读取文件
File file = new File(“D://a//a.xls”);
//读取流
InputStream is = new FileInputStream(file);
//读取Excel格式
Workbook rwb = Workbook.getWorkbook(is);
二、使用jxl.Sheet获取Excel中的值
// 获得第一个Sheets 的结果
Sheet rs = rwb.getSheet(0);
// 得到行数
int num_row = rs.getRows();
System.out.println("行数:" + num_row);
// 得到列数
int num_column = rs.getColumns();
System.out.println("列数:" + num_column);
//获取Excel中第n行第m个值
System.out.println(rs.getRow(n)[m].getContents());
三、使用org.jdom2创建Excel文件
// 创建根节点 MessageMap;
Element root = new Element("MessageMap");
// 根节点添加到文档中;
Document Doc = new Document(root);
// 创建节点 Message;
Element elements = new Element("Message");
// 给 Message 节点添加属性;
elements.setAttribute("ClassName", "XmlAnalyzer");
elements.setAttribute("Type", "Xml报文");
// 给父节点MessageMap添加Message子节点;
root.addContent(elements);
四、使用org.jdom2.output.XMLOutputter将设计好的Excel文件输出
XMLOutputter XMLOut = new XMLOutputter();
String name = rs.getRow(1)[4].getContents()+".xml";
// 输出 xml 文件;
XMLOut.output(Doc, new FileOutputStream(url2 + "D:\\a\\b\\"+name));