# Curtia_DBF2XML **Repository Path**: Tsybius2014/Curtia_DBF2XML ## Basic Information - **Project Name**: Curtia_DBF2XML - **Description**: Curtia是一个将DBF文件转化到XML文件的程序,Curtia可以选择将小型DBF文件中指定的行列信息保存到一个XML文件中 - **Primary Language**: Visual Basic - **License**: GPL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2015-02-02 - **Last Updated**: 2025-01-26 ## Categories & Tags **Categories**: utils **Tags**: None ## README #Curtia_DBF2XML Curtia 可以把DBF文件中存储的数据,输出到XML文件中 本程序支持3种方式读取DBF文件中的内容: ``` Microsoft dBASE Driver (*.dbf) Microsoft Visual FoxPro Driver vfpoledb ``` ## 读取的DBF文件 ## ``` 列1 列2 列3 列4 ... 行a a_1 a_2 a_3 a_4 ... 行b b_1 b_2 b_3 b_4 ... ... ... ... ... ... ... ``` ## 生成的XML文件 ## ```xml <列1>column1_row1 <列2>column2_row1 ... <列1>column1_row2 <列2>column2_row2 ... ... ``` 这个程序生成的XML文件可以用XSLT将数据展示,方法是在XML文件的第一行下添加: ```xml ```