dbf文件
DBF文件格式是一种比较“古老”的数据库文件格式了,dbf是dBase和FoxPro所使用的数据库格式,在没有这两种软件的情况下,可以使用Excel打开文件。在Excel的“打开”文件的对话框中,选择文件类型为“dBase(*.dbf)”就可以了。如果没有安装Excel,还可以使用另外的一些专门软件,如http://www.dbfview.com的DBFView,打开和编辑相应的DBF文件。DBF数据库文件由头记录(header record)和数据记录(data record)两个部分组成。头记录从文件位置0开始,定义数据库的结构及其它与数据库有关的信息;数据记录紧接在头记录后面,包含了字段的实际文本内容。
dbf类型
dbf分两种,一种是Dbase,另一种是Foxpro的
对于Dbase不用装驱动就可以操作 ,如下面代码所示:
对应的工具代码:下面代码支持jdk1.7,对于jdk1.8不支持
package com.haiyi.tca.exchange.util;
import com.google.common.collect.Maps;
import com.haiyi.tca.exchange.model.exception.ExchangeRunTimeException;
import java.io.PrintWriter;
import java.sql.*;
import java.util.Map;
/**
* @author yujiakui
* @version 1.0
* Email: jkyu@haoyi-info.com
* date: 2018/7/16 8:52
* description:
**/
public class DbfUtil {
/**
* 操作类型
*/
private enum OpTypeEnum {
QUERY, UPDATE
}
/**
* 加载驱动
*/
static {
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
} catch (ClassNotFoundException e) {
throw new ExchangeRunTimeException("sun.jdbc.odbc.JdbcOdbcDriver加载失败,类找不到");
}
}
/**
* dbf连接器对应的map
* 其中key为对应的dbf文件夹路径
*/
private final static Map<String, Connection> dbfConnectionMap = Maps.newHashMap();
/**
* 根据db文件对应的文件夹路径来获得对应的连接
*
* @param dbFolderPath
* @return
*/
private static Connection getConnectionByDbpath(String dbFolderPath) {
Connection connection = dbfConnectionMap.get(dbFolderPath);
if (null == connection) {
String url = "jdbc:odbc:DRIVER={Microsoft dBase Driver (*.dbf)};DBQ=" + dbFolderPath + ";";
try {
connection = DriverManager.getConnection(url, "", "");
} catch (SQLException e) {
throw new ExchangeRunTimeException("DBF SQL执行异常dbFolderPath=" + dbFolderPath, e);
}
dbfConnectionMap.put(dbFolderPath, connection);
}
return connection;
}
/**
* 执行查询
*
* @param dbFolderPath 数据文件对应的路径
* @param sql
* @return
*/
public static ResultSet executeQuery(String dbFolderPath, String sql) {
return (ResultSet) executeSql(dbFolderPath, sql, OpTypeEnum.QUERY);
}
/**
* 执行sql语句,如果是查询则对应的object为结果集合,否则为boolean
*
* @param dbFolderPath
* @param sql
* @param opType
* @return
*/
private static Object executeSql(String dbFolderPath, String sql, OpTypeEnum opType) {
Connection connection = dbfConnectionMap.get(dbFolderPath);
PreparedStatement psDbf = null;
try {
psDbf = connection.prepareStatement(sql);
if (OpTypeEnum.QUERY.equals(opType)) {
return psDbf.executeQuery();
} else {
return psDbf.execute();
}
} catch (SQLException e) {
throw new ExchangeRunTimeException("DBF SQL执行异常sql=" + sql, e);
} finally {
try {
if (null != psDbf) {
psDbf.close();
}
} catch (SQLException sqlException) {
throw new ExchangeRunTimeException("DBF close执行异常sql=" + sql, sqlException);
}
}
}
/**
* 执行删除和更新方法
*
* @param dbFolderPath
* @param sql
* @return
*/
public static boolean executeUpdate(String dbFolderPath, String sql) {
return (Boolean) executeSql(dbFolderPath, sql, OpTypeEnum.UPDATE);
}
public static void main(String[] args) throws SQLException, ClassNotFoundException {
Connection connDbf = null;
PreparedStatement psDbf = null;
ResultSet rsDbf = null; //一个目录名称,下面存放DBF文件
String filePath = "D:\\temp"; //一个DBF文件夹,实际文件名称为tbUser.dbf,这里做为表名不用扩展名就可以
String fileName = "zq_order.dbf";
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
// 开启日志
DriverManager.setLogWriter(new PrintWriter(System.out));
String url = "jdbc:odbc:DRIVER={Microsoft dBase Driver (*.dbf)};DBQ=" + filePath + ";";
System.out.println(url);
connDbf = DriverManager.getConnection(url, "", "");
//String sql = "select * from " + fileName;
String sql = "delete from " + fileName;
psDbf = connDbf.prepareStatement(sql);
psDbf.execute();
//rsDbf = psDbf.executeQuery();
System.out.println(rsDbf);
/* ResultSetMetaData md = rsDbf.getMetaData();//获取键名
int columnCount = md.getColumnCount();//获取行的数量
while (rsDbf.next()) {
for (int i = 1; i <= columnCount; i++) {
System.out.println(md.getColumnName(i) + ":" + rsDbf.getObject(i));//获取键名及值
}
}*/
}
}
还有一种通用读取dbf文件的方式是直接读取dbf文件,使用如下依赖进行读取
<groupId>com.github.albfernandez</groupId>
<artifactId>javadbf</artifactId>
<version>1.9.2</version>
<url>https://github.com/albfernandez/javadbf</url>
依赖对应的DBFWriter和DBFReader进行操作