DBF文件初步了解(二)——DBF数据导出代码实现

2024-05-12 22:58

本文主要是介绍DBF文件初步了解(二)——DBF数据导出代码实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

    上篇博客中主要记录一些关于DBF数据文件的概念性知识。包括DBF的数据结构和用处。在这里记录一下在C#中导出DBF文件的实现方式。
    DBF文件也是一种数据库文件,我们导出DBF文件也就是将数据库中的数据导出到DBF文件中。所以最主要的就是讲DataTable转换成DBF,包括数据和数据类型。
  
<span style="font-size:24px;">private bool WriteDBFfile(string filepath, DataTable dt, List<string> columnNames, string tableName, Dictionary<string, char> nametype = null){#region ***************************************写t**************************************nametype = ConvertColumnType(dt, tableName); ;FileStream fs = null;BinaryWriter bw = null;try{int rowCount = dt.Rows.Count;int columnCount = dt.Columns.Count;//if (rowCount > 0 && columnCount > 0)//{fs = new FileStream(filepath, FileMode.Create, FileAccess.Write);bw = new BinaryWriter(fs);byte tempByte;byte[] tempBytes;int tempInt;int[] fieldLength = new int[columnCount];int tempMax = 0;for (int i = 0; i < columnCount; i++){tempMax = 0;for (int j = 0; j < rowCount; j++){if (dt.Rows[j][i].ToString() != null && dt.Rows[j][i].ToString() != ""){if (dt.Rows[j][i].ToString().Length > tempMax){tempMax = dt.Rows[j][i].ToString().Length;}}}char dbfType = 'C';if (nametype.ContainsKey(columnNames[i].ToLower())){dbfType = nametype[columnNames[i].ToLower()];}if (tableName.StartsWith("F") && dbfType == 'N'){tempMax = 8;}else if (dbfType == 'N'){tempMax = 1;}//数êy字×?类àà型Dí长3¤度è至á少éù13,£?此′?处′|直±接ó设éè置?所ù有óD列áD最×?小D?长3¤度è为a13fieldLength[i] = tempMax * 2 < 13 ? 13 : tempMax * 2;}/tempByte = 0x03;bw.Write(tempByte);tempBytes = new byte[3];tempInt = DateTime.Now.Year - 1900;tempBytes[0] = System.Convert.ToByte(tempInt);tempBytes[1] = System.Convert.ToByte(DateTime.Now.Month);tempBytes[2] = (byte)(DateTime.Now.Day);bw.Write(tempBytes);bw.Write(rowCount);tempInt = 33 + columnCount * 32;bw.Write((Int16)tempInt);tempInt = 1;for (int i = 0; i < columnCount; i++){tempInt += fieldLength[i];}bw.Write((Int16)tempInt);tempBytes = new byte[20];bw.Write(tempBytes);string tempColumnName;for (int i = 0; i < columnCount; i++){tempColumnName = columnNames[i];tempBytes = ConvertStringToBytes(tempColumnName, 11);bw.Write(tempBytes);char dbfType = 'C';if (nametype.ContainsKey(tempColumnName.ToLower())){dbfType = nametype[tempColumnName.ToLower()];}tempByte = (byte)dbfType;//数êy据Y类àà型Dí为a字×?符·?串′?bw.Write(tempByte);//第μú12-15为a保±£留á?字×?节útempBytes = new byte[4];bw.Write(tempBytes);//第μú16个?字×?节ú为a字×?段?长3¤度ètempMax = fieldLength[i];tempByte = (byte)tempMax;bw.Write(tempByte);//接ó着×?第μú17-31都?为a保±£留á?字×?节útempBytes = new byte[15];if (tableName.StartsWith("F") && dbfType == 'N' && tempColumnName.StartsWith("z")){tempBytes[0] = (byte)2;/}bw.Write(tempBytes);}tempByte = 0x0D;bw.Write(tempByte);object tempValue;for (int i = 0; i < rowCount; i++){//每?一ò?行DD第μú一ò?个?字×?节ú默?认è?为a20tempByte = 0x20;bw.Write(tempByte);for (int j = 0; j < columnCount; j++){tempValue = dt.Rows[i][j];if (tempValue != null){double val;if (double.TryParse(tempValue.ToString(), out val) && Equals(val, DbfsjdcViewModel_2015.FXB_DEF)){tempValue = "";}tempBytes = ConvertStringToBytes(tempValue.ToString(), fieldLength[j], true);bw.Write(tempBytes);}else{tempBytes = ConvertStringToBytes("", fieldLength[j], true);bw.Write(tempBytes);}}}}catch (Exception except){MessageBox.Show(except.Message);}finally{if (bw != null){bw.Close();bw.Dispose();}if (fs != null){fs.Close();fs.Dispose();}nametype.Clear();}return System.IO.File.Exists(filepath);#endregion  ***************************************写D′入è?DBF文?件t**************************************}类型转换将String类型转换为Bytes类型方法:private byte[] ConvertStringToBytes(string tempStr, int limitLength, bool needAppendWhiteSpace = false){try{//originaldqdm,sourcelsgxmc,sourcelsgxdm,//org_dqdm,src_lsgxmc,src_lsgxdmswitch (tempStr){case "originaldqdm":tempStr = "org_dqdm";break;case "sourcelsgxmc":tempStr = "src_lsgxmc";break;case "sourcelsgxdm":tempStr = "src_lsgxdm";break;}byte[] tempBytes = UTF8Encoding.GetEncoding("gb2312").GetBytes(tempStr);byte[] result = null;if (tempBytes.Length == limitLength){result = tempBytes;}else if (tempBytes.Length > limitLength){result = new byte[limitLength];for (int i = 0; i < limitLength; i++){result[i] = tempBytes[i];}}else if (tempBytes.Length < limitLength){result = new byte[limitLength];for (int i = 0; i < tempBytes.Length; i++){result[i] = tempBytes[i];}if (needAppendWhiteSpace){for (int i = tempBytes.Length; i < limitLength; i++){result[i] = (byte)32;}}}return result;}catch (Exception except){MessageBox.Show(except.Message);return null;}}提取DataTable 列名,并转化为 Listprivate Dictionary<string, char> ConvertColumnType(DataTable dt, string tableName){Dictionary<string, char> lstType = new Dictionary<string, char>();foreach (DataColumn dc in dt.Columns){string colName = dc.ColumnName;  string colType = dc.DataType.ToString();    char dbfType = 'C';switch (colType){case "System.Int32":case "System.Int64":case "System.Double":case "System.Decimal":case "System.UInt16":case "System.UInt32":case "System.UInt64":case "System.Byte":case "System.SByte":dbfType = 'N';break;case "System.DateTime":dbfType = 'D';break;case "System.Int16":case "System.String":dbfType = 'C';break;default:dbfType = 'C';break;}if (!lstType.ContainsKey(colName.ToLower())){lstType.Add(colName.ToLower(), dbfType);}}return lstType;}</span>

这篇关于DBF文件初步了解(二)——DBF数据导出代码实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/983980

相关文章

Redis分片集群的实现

《Redis分片集群的实现》Redis分片集群是一种将Redis数据库分散到多个节点上的方式,以提供更高的性能和可伸缩性,本文主要介绍了Redis分片集群的实现,具有一定的参考价值,感兴趣的可以了解一... 目录1. Redis Cluster的核心概念哈希槽(Hash Slots)主从复制与故障转移2.

springboot+dubbo实现时间轮算法

《springboot+dubbo实现时间轮算法》时间轮是一种高效利用线程资源进行批量化调度的算法,本文主要介绍了springboot+dubbo实现时间轮算法,文中通过示例代码介绍的非常详细,对大家... 目录前言一、参数说明二、具体实现1、HashedwheelTimer2、createWheel3、n

使用Python实现一键隐藏屏幕并锁定输入

《使用Python实现一键隐藏屏幕并锁定输入》本文主要介绍了使用Python编写一个一键隐藏屏幕并锁定输入的黑科技程序,能够在指定热键触发后立即遮挡屏幕,并禁止一切键盘鼠标输入,这样就再也不用担心自己... 目录1. 概述2. 功能亮点3.代码实现4.使用方法5. 展示效果6. 代码优化与拓展7. 总结1.

Mybatis 传参与排序模糊查询功能实现

《Mybatis传参与排序模糊查询功能实现》:本文主要介绍Mybatis传参与排序模糊查询功能实现,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友跟随小编一起看看吧... 目录一、#{ }和${ }传参的区别二、排序三、like查询四、数据库连接池五、mysql 开发企业规范一、#{ }和${ }传参的

Docker镜像修改hosts及dockerfile修改hosts文件的实现方式

《Docker镜像修改hosts及dockerfile修改hosts文件的实现方式》:本文主要介绍Docker镜像修改hosts及dockerfile修改hosts文件的实现方式,具有很好的参考价... 目录docker镜像修改hosts及dockerfile修改hosts文件准备 dockerfile 文

基于SpringBoot+Mybatis实现Mysql分表

《基于SpringBoot+Mybatis实现Mysql分表》这篇文章主要为大家详细介绍了基于SpringBoot+Mybatis实现Mysql分表的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可... 目录基本思路定义注解创建ThreadLocal创建拦截器业务处理基本思路1.根据创建时间字段按年进

Python将博客内容html导出为Markdown格式

《Python将博客内容html导出为Markdown格式》Python将博客内容html导出为Markdown格式,通过博客url地址抓取文章,分析并提取出文章标题和内容,将内容构建成html,再转... 目录一、为什么要搞?二、准备如何搞?三、说搞咱就搞!抓取文章提取内容构建html转存markdown

Python获取中国节假日数据记录入JSON文件

《Python获取中国节假日数据记录入JSON文件》项目系统内置的日历应用为了提升用户体验,特别设置了在调休日期显示“休”的UI图标功能,那么问题是这些调休数据从哪里来呢?我尝试一种更为智能的方法:P... 目录节假日数据获取存入jsON文件节假日数据读取封装完整代码项目系统内置的日历应用为了提升用户体验,

vue使用docxtemplater导出word

《vue使用docxtemplater导出word》docxtemplater是一种邮件合并工具,以编程方式使用并处理条件、循环,并且可以扩展以插入任何内容,下面我们来看看如何使用docxtempl... 目录docxtemplatervue使用docxtemplater导出word安装常用语法 封装导出方

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N