逸者

2006年7月28日

在java中使用CsvDriver读取csv文件

        csv文件格式是用的比较多的,前几天在网上找到一个驱动可以把这种格式的文件当作数据库一样读取。
操作步骤如下:
第一、下载驱动程序http://sourceforge.net/projects/csvjdbc
第二、把csvjdbc.jar文件放到classpath路径中去。
第三、例子如下:
 
import java.sql.*;
import org.relique.jdbc.csv.CsvDriver;
public class JdbcCsv
{
public static void main(String[] args)
{
try
{
// load the driver into memory
Class.forName("org.relique.jdbc.csv.CsvDriver");
// create a connection. The first command line parameter is assumed to
// be the directory in which the .csv files are held
Connection conn = DriverManager.getConnection("jdbc:relique:csv:E:\\fund\\test\\");
// create a Statement object to execute the query with
Statement stmt = conn.createStatement();
// Select the ID and NAME columns from sample.csv
ResultSet results = stmt.executeQuery("SELECT djwd,银行 from czcg");
// dump out the results
while (results.next())
{
System.out.println("djwd= " + results.getString("djwd") + " 银行= " + results.getString("银行"));
}
// clean up
results.close();
stmt.close();
conn.close();
}
catch(Exception e)
{
System.out.println("Oops-> " + e);
}
}
}

posted @ 2006-07-28 08:55 飘逸者 阅读(1997) | 评论 (2)编辑 收藏

仅列出标题  
<2025年4月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

导航

统计

常用链接

留言簿(1)

随笔档案

搜索

最新评论