`
刘燕宝宝鱼
  • 浏览: 25917 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

Java读取dbf文件

阅读更多

       java操作dbf文件Api提供组织:http://sarovar.org/projects/javadbf/但是到2004年该组织停止了javadbf 的更新。并且对中文的支持也不够好,后来参照一哥们的提示,修改了其中的方法,中文不在乱码,也不会在读取的时候丢失数据,根据我的认识,我对这一过程做一总结。需要重新编译后包或交流的哥们可加我QQ:18042005836 

 

    操作dbf文件的步骤是从本地上传到服务器,然后在从中获取数据,下面方法就是从dbf文件中获取数据,将数据封装到List中返回。在插入数据库中。

	public List<String[]> getFileData(String uploadFileName, String tableName,String[] index) {
		DBFReader reader=null;//从dbf中获取内容	
		List<String[]> list=new LinkedList<String []>();
		String[] array=null;
		try {
			InputStream in=new FileInputStream(new File(temp+"\\"+uploadFileName));
			reader=new DBFReader(in);//将文件从文件流中读入。
			int fcount=reader.getFieldCount();//读取字段个数
			int rowNo=reader.getRecordCount();//获取有多少条记录
			int length=index.length;//为其他地方获得列宽度,这里可忽略
			int[] colIndex=new int[length];//设置列的数量。
			for(int i=0;i<length;i++){
				colIndex[i] = DBUtils.toInteger(index[i]);//将传入的列名赋值给新列
			}
			for(int j=0;j<reader.getFieldCount();j++){//dbf 貌似必须指定列的宽度大小
					reader.getField(j).setFieldLength(reader.getField(j).getFieldLength());
			}
			Object []rowObjects;//获取一个文件的行数
			while((rowObjects =  reader.nextRecord())!=null){
				array=new String[rowObjects.length];//array为新dbf每一行的所有值数组。
				for(int i=0;i<fcount;i++){
						String s=rowObjects[i].toString().trim();
						if(s.equals("")||s==null||s.length()<=0||s.isEmpty()||"null".equals(s)){
							array[i]= "";
						}else{
								array[i]=s;
							}
				} 
				list.add(array);
			}			
		}
		 catch (FileNotFoundException e) {
			log.error("解析dbf数据过程中,没有找到dbf文件");
			e.printStackTrace();
		} catch (DBFException e) {
			log.error("解析dbf数据过程中,dbf文件读取异常");
			e.printStackTrace();
		}	
		return list;
	}
		
 

 

分享到:
评论
1 楼 天空之城 2013-03-09  
学习喽~~ thankyou!!!

相关推荐

Global site tag (gtag.js) - Google Analytics