当前位置: 编程技术>c/c++/嵌入式
如何用C语言生成简单格式的xml
来源: 互联网 发布时间:2014-10-16
本文导语: 代码很简单,直接贴了。 代码如下: #include static FILE *out = NULL; static int tabs = 0; void set_out_fp(FILE *fp) { out = fp; } void put(char *str) { fprintf(out, "%s", str); ...
代码很简单,直接贴了。
#include
static FILE *out = NULL;
static int tabs = 0;
void set_out_fp(FILE *fp)
{
out = fp;
}
void put(char *str)
{
fprintf(out, "%s", str);
}
void put_head(char *head)
{
put("n");
}
void out_tabs()
{
int i;
for(i=0; i < tabs; i++)
{
put("t");
}
}
void tag_start(char *tag)
{
out_tabs();
put("n");
tabs = tabs + 1;
}
void tag_end(char *tag)
{
tabs = tabs - 1;
out_tabs();
put("n");
}
void tag_value(char *tag, char *value)
{
out_tabs();
put("n");
}
void tag_value_num(char *tag, long value)
{
out_tabs();
put("n");
}
int main()
{
FILE *fp = fdopen(1, "a");
set_out_fp(fp);
put_head("xml version='1.0' encoding="GBK"");
tag_start("投递信息");
tag_start("硬件");
tag_value_num("网卡", 1);
tag_end("硬件");
tag_end("投递信息");
fclose(fp);
return 0;
}
代码如下:
#include
static FILE *out = NULL;
static int tabs = 0;
void set_out_fp(FILE *fp)
{
out = fp;
}
void put(char *str)
{
fprintf(out, "%s", str);
}
void put_head(char *head)
{
put("n");
}
void out_tabs()
{
int i;
for(i=0; i < tabs; i++)
{
put("t");
}
}
void tag_start(char *tag)
{
out_tabs();
put("n");
tabs = tabs + 1;
}
void tag_end(char *tag)
{
tabs = tabs - 1;
out_tabs();
put("n");
}
void tag_value(char *tag, char *value)
{
out_tabs();
put("n");
}
void tag_value_num(char *tag, long value)
{
out_tabs();
put("n");
}
int main()
{
FILE *fp = fdopen(1, "a");
set_out_fp(fp);
put_head("xml version='1.0' encoding="GBK"");
tag_start("投递信息");
tag_start("硬件");
tag_value_num("网卡", 1);
tag_end("硬件");
tag_end("投递信息");
fclose(fp);
return 0;
}