逸者

在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 on 2006-07-28 08:55 飘逸者 阅读(1997) 评论(2)  编辑  收藏

评论

# re: 在java中使用CsvDriver读取csv文件 2007-08-14 16:40 初心者

十分感谢  回复  更多评论   

# re: 在java中使用CsvDriver读取csv文件 2007-08-31 09:15 GRAND

@初心者
挺好的,谢谢  回复  更多评论   


只有注册用户登录后才能发表评论。


网站导航:
 
<2007年8月>
2930311234
567891011
12131415161718
19202122232425
2627282930311
2345678

导航

统计

常用链接

留言簿(1)

随笔档案

搜索

最新评论