惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
Vercel News
Vercel News
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
H
Help Net Security
罗磊的独立博客
The Cloudflare Blog
J
Java Code Geeks
博客园 - 叶小钗
I
InfoQ
B
Blog
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
月光博客
月光博客
博客园_首页
雷峰网
雷峰网
M
MIT News - Artificial intelligence
博客园 - 【当耐特】
美团技术团队
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美

博客园 - 谁是菜鸟?

mysql数据区分大小写 css hack java 乱码 panic user 44/45 Lock wait timeout exceeded; try restarting transaction window.onbeforeunload(支持firefox,ie,Safari) 配置SFS2.x的调试环境 mysql异常处理 常用linux命令 x86_64-unknown-linux - 谁是菜鸟? - 博客园 mysql 动态sql memcached资料 js ping - 谁是菜鸟? - 博客园 mysql roll back 为没有自动增长列的表添加自动增长列并更新现有数据 SmartFox Server 控制pubMsg - 谁是菜鸟? mysql 命令 java.util.ConcurrentModificationException RenRen应用接入样例 - 谁是菜鸟? - 博客园
jxl read and write excel
谁是菜鸟? · 2009-09-09 · via 博客园 - 谁是菜鸟?

read:
try{
    Workbook workbook = Workbook.getWorkbook(new File(path));
    Sheet sheet = workbook.getSheet(0);
    int rows=sheet.getRows();
    //System.out.println(rows);
    int col=sheet.getColumns();
    //System.out.println(col);
    for(int i=1;i<rows;i++)
    {
      for(int j=0;j<col;j++)
      {
            System.out.println(sheet.getCell(j,i).getContents());
            //can create your own model data from excel
      }
    }
    workbook.close();
   }catch(Exception e)
   {
    e.printStackTrace();
   }
   ---------------------------------------------------------------------
write excel :
try    {  
   WritableWorkbook book  =  Workbook.createWorkbook(new File(path));  
   
    WritableSheet sheet  =  book.createSheet( "新生信息统计" ,0 );   
    //can write data from model list
    //write string
    Label label0  =   new  Label( 0 ,  0 ,  "学生编号" );
    sheet.addCell(label0);  
    //write number 
    jxl.write.Number number  =   new  jxl.write.Number( 0 ,  1 , 1);
    sheet.addCell(number);  
    book.write();   
    book.close();  
 }   catch  (Exception e)   {  
           System.out.println(e);   
}