码迷,mamicode.com
首页 > 数据库 > 详细

ODBC操作excel

时间:2014-07-06 16:51:33      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:数据   os   cti   for   工作   代码   

//ODBC连接Excel
 public static void main(String[] args) {
  Connection conn = null;
  Statement stm = null;
  ResultSet rs = null;
  try {
   //加载ODBC驱动
   Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
   //创建连接对象
   conn = DriverManager.getConnection("jdbc:odbc:myexcel");
   stm = conn.createStatement();//创建Statement对象
   String sql = "select * from [sheet1$]";//查询excel中的工作表时后面要加上$符号并在最外层加上[]
   rs = stm.executeQuery(sql);//执行sql语句,得到查询结果集
   //遍历结果集
   while(rs.next()){
    //输出每一行记录的相关数据
    //System.out.println(rs.getString("name")+"-"+rs.getInt("age"));
    System.out.println(rs.getString(1)+"-"+rs.getInt(2));//可以通过上一行代码利用列名进行获取数据,也可以用列数来获取数据,列数从1开始
   }   
  } catch (ClassNotFoundException e) {
   e.printStackTrace();
  } catch (SQLException e) {
   e.printStackTrace();
  }finally{
   try {
    if (rs != null) {
     rs.close();
    }
    if (stm != null) {
     stm.close();
    }
    if (conn != null) {
     conn.close();
    }
   } catch (SQLException e2) {
    e2.printStackTrace();
   }
  }
 }

ODBC操作excel,布布扣,bubuko.com

ODBC操作excel

标签:数据   os   cti   for   工作   代码   

原文地址:http://www.cnblogs.com/danmao/p/3825272.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!