易截截图软件、单文件、免安装、纯绿色、仅160KB

java 将EXCEL表格数据转换成XML格式

有时候我门需要把EXCEL表格中的数据转换成XML格式 这需要用到JXL(分析EXCEL)包和JDOM包(构成XML)
import java.io.*;
import jxl.*;
import org.jdom.Element;
import org.jdom.Document;
import org.jdom.output.XMLOutputter;
/**
 *
 * @author guo
 */
public class EtoX {
   
    /** Creates a new instance of EtoX */
    public EtoX() {
    }
   
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        try{           
           InputStream is= new FileInputStream("C:\\Documents and Settings\\guo\\EXCELtoXML\\src\\exceltoxml\\ningxia.xls");
           Workbook rwb=Workbook.getWorkbook(is);
           //System.out.println(rwb.getNumberOfSheets());     //获得工作薄(Workbook)中工作表(Sheet)的个数
           Sheet rs=rwb.getSheet(0);
           int l=rs.getColumns();             //返回表中的总列数
           int w=rs.getRows();               //返回表中包含总行数
           System.out.println("文件总共"+w+"行");
           Element root=new Element("allmetadata");
           Document doc=new Document(root);
         


相关文档:

读写xml所有节点个人小结 和 读取xml节点的数据总结

//打开某文件(假设web.config在根目录中)
     string filename=Server.MapPath("/") + @"WebApplication1\web.config";
     XmlDocument xmldoc= new XmlDocument();
     xmldoc.Load(filename);
     //得到顶层节点列表
  ......

SAX解析XML文档(转)


package cn.com.xml.vo;
public class RosterVo {
   
private String id; //学号

private String name;   //学生姓名
  
   private String age;    //年龄
  
   private String skill;   //科目 ......

Google Maps API in Java ME

Here is a simple library to query Google Maps with the following features:
geocode addresses to their geographic coordinates
retrieve static images with given custom size, format and zoom
To see a live sample of this API, you can check here: Java ME Google Maps API sample MIDlet
Contents
[h ......

Java开源 J2EE框架工具

Spring Framework 【Java开源 J2EE框架】
Spring是一个解决了许多在J2EE开发中常见的问题的强大框架。 Spring提供了管理业务对象的一致方法并且鼓励了注入对接口编程而不是对类编程的良好习惯。Spring的架构基础是基于使用JavaBean属性的Inversion of Control容器。然而,这仅仅是完整图景中的一部分:Spring在使用IoC容器 ......
© 2009 ej38.com All Rights Reserved. 关于E健网联系我们 | 站点地图 | 赣ICP备09004571号