ini檔案轉換為 xml檔案

2021-07-06 02:00:30 字數 1173 閱讀 5656

config.ini檔案

#config of network 有關網路的配置資訊

!network

ip=192.168.11.6

port=8000

home-path=/home/admin/

#config of database有關資料庫的配置資訊

!database

server=oracle

user=admin

password=123456

config.xml檔案

ipport

home-path

server

user

password

程式:

#include #include #include #include #define file_len 64

#define max_line 128

#define line 28

int main(int argc, char *argv)

len = strlen(argv[1]); /* 求檔名長度 */

if(strcmp(&argv[1][len - 3], "ini") != 0)

in = fopen(argv[1], "r"); /* 開啟配置檔案 */

if(in == null)

strcpy(file_name, argv[1]); /* 將配置檔案的副檔名改為「xml」 */

strcpy(&file_name[len - 3], "xml");

out = fopen(file_name, "w"); /* 開啟「.xml」檔案,該檔案的檔名和原配置檔案一樣 */

if(out == null)

while(fgets(buf, max_line, in) != null)else if(buf[0] == '\0')

sprintf(outbuf, "\n\n", &head[1]); /* 遇到空行,說明乙個配置資訊結束,輸出配置資訊結尾 */

else

if(fputs(outbuf, out) == -1)

} if(errno != 0)

fclose(in); /* 關閉檔案 */

fclose(out);

return 0;

}

用C 把檔案轉換為XML

using system using system.drawing using system.collections using system.componentmodel using system.windows.forms using system.io using system.xml pub...

多個XML檔案合併並轉換為TXT檔案

一 通過網路爬蟲從網上擼到xml小檔案,現將檔案合併並轉換為txt檔案。coding utf 8 import os from bs4 import beautifulsoup 1 放xml檔案的資料夾路徑 filepath g datacenter stoke critic data 2獲取資料夾...

把XML檔案轉換為字串

後台管理跑馬燈功能,使用者新增完跑馬燈之後,需要在後台產生乙個xml檔案,讓前台直接讀取這個xml檔案即可。不必需要在前台顯示時,再去迴圈跑馬燈目錄的所有。前台讀xml檔案時,需要把xml檔案轉為字串。xml檔案是這樣子的 剛開始轉換時,使用下面的轉換方法 dim objdoc asnew xmld...