csv文件格式是用的比较多的,前几天在网上找到一个驱动可以把这种格式的文件当作数据库一样读取。
第二、把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);
}
}
}