dbf文件的解析方法
// 先下載導入dbf的jar架包 http://pan.baidu.com/s/1jIqVIcA
InputStream fis = null;
String sresult = "";
try {
// 讀取文件的輸入流
fis = new FileInputStream(path);
// 根據輸入流初始化一個DBFReader實例,用來讀取DBF文件信息
DBFReader reader = new DBFReader(fis);
// 調用DBFReader對實例方法得到path文件中字段的個數
int fieldsCount = reader.getFieldCount();
// 取出字段信息
for (int i = 0; i < fieldsCount; i++) {
DBFField field = reader.getField(i);
System.out.println(field.getName());
}
Object[] rowValues;
// 一條條取出path文件中記錄
while ((rowValues = reader.nextRecord()) != null) {
for (int i = 0; i < rowValues.length; i++) {
System.out.println(rowValues[i]);
}
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
fis.close();
} catch (Exception e) {
}
}
dbf文件的解析方法