• 大小: 1.01MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-08-30
  • 语言: Java
  • 标签: ajax  excel  java  javascript  jxl  

资源简介

这是我自己做的2个例子,里面是用JXL这个第三方控件来实现了java对excel表格的操作,里面写的很详细,而且jxl.jar包我也放在里面了,大家直接拷贝我的代码就可以用了

资源截图

代码片段和文件信息

import java.util.*;
import java.text.*; 
import java.io.*;
import jxl.*;
public class jxl
{
public static void main(String[] args)
{
String fileName = “c://signupcheckin.xls“;
   InputStream is = null;
   FileInputStream fn = null;
   int cs = 0;
   int rs = 0;
   try{
     fn = new FileInputStream(fileName);
     is = fn;
     Workbook rb =  Workbook.getWorkbook(is);
     Sheet s = rb.getSheet(0);//此处只读取第一个sheet内容
     Cell a2=s.getCell(01);  //此处是获取单个单元格的数据
     Cell c4=s.getCell(23);
     String sa2=a2.getContents();
     String sc4=c4.getContents();
     System.out.println(sa2+“ “+sc4);
     System.out.print(“\n\n\n“);
     cs = s.getColumns();
     rs = s.getRows();
     for(int j=0;j       Cell[] c = s.getRow(j);
       for(int x=0;x         System.out.print(c[x].getContents()+“\t“);
       }
       System.out.print(“\r\n“);
     }
     System.out.println(“Columns:“+cs+“  Rows:“+rs);
   }catch(Exception e){
     System.out.println(e.toString());
   }finally{
     try{
       fn.close();
       is.close();
     }catch(Exception e){
       System.out.println(e.toString());
     }
   }
}
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件     660390  2007-10-11 18:05  jxl\jxl-2.6.jar

     文件       1209  2007-11-06 08:56  jxl\jxl.java

     文件       5505  2007-11-05 16:02  jxl\JXLExample.java

     文件     516481  2007-10-11 18:05  jxl\jxl.jar

     目录          0  2007-11-08 16:04  jxl

----------- ---------  ---------- -----  ----

              1183585                    5


评论

共有 条评论