一个简单生成Excel文件格式的java包。

    作为学习Excel 2003 Xml文件格式的过程,实现了一个Excel xml writer,可以生成Excel xml file.基本上提供了Excel 2003 xml文件格式完整支持,列表如下:
    Row
    Cell
    Styles(Font,Alignment,Interior,NumberFormat)
    NamedRange
    Formula(not complete yet).
    Condition Formatting.

    一小段演示代码,设置A1到E5的单元个内容:
    import com.dyz.xfe.*;
    /**
     * @author dengyunze
     *
     * TODO To change the template for this generated type comment go to
     * Window - Preferences - Java - Code Style - Code Templates
     */
    public class TestMain {

     public static void main(String[] args) {
          Workbook book = new Workbook("d:/excel.xml");
          Worksheet s1 = book.getWorksheet(1);  
           book.defineRange("range1",1,1,1,4,4);
          for( int i=1; i<5; i++ ) {
              for( int j=1; j<5; j++ ) {
                  Cell cell = s1.getCell(i,j);
                  cell.setValue(i*j);
              }
           }
          book.close();
      }
    }

    

你可能感兴趣的:(一个简单生成Excel文件格式的java包。)