本文介绍使用spire.xls for java将xml文件转为excel的方法,包括转为.xlsx / .xls等。
import com.spire.xls.*;
public class xmltoexcel {
public static void main(string[] args) {
//加载xml文件
workbook wb = new workbook();
wb.loadfromxml("test.xml");
//转为xlsx格式的excel
wb.savetofile("xmltoexcel.xlsx",fileformat.version2013);
//转为xls格式的excel
wb.savetofile("xmltoexcel.xls",fileformat.version97to2003);
}
}
用于测试的xml文件如下:
转换结果: