码迷,mamicode.com
首页 > 数据库 > 详细

dbf文件的解析方法

时间:2017-07-26 10:42:31      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:pat   count()   fileinput   puts   取出   length   解析   getname   catch   

// 先下载导入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文件的解析方法

标签:pat   count()   fileinput   puts   取出   length   解析   getname   catch   

原文地址:http://www.cnblogs.com/Lose-word/p/7237984.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!