YAML教程

1、简介html

YAML是一种人们能够轻松阅读的数据序列化格式,而且它很是适合对动态编程语言中使用的数据类型进行编码。YAML是YAML Ain't Markup Language简写,和GNU("GNU's Not Unix!")同样,YAML是一个递归着说“不”的名字。不一样的是,GNU对UNIX说不,YAML说不的对象是XML。YAML不是XML。它能够用做数据序列,配置文件,log文件,Internat信息和过滤。java

参考:http://jyaml.sourceforge.net/download.htmlnode

        http://justjavac.iteye.com/blog/694498编程

 

 

2、安装配置maven

1)java:下载jar包并导入编程语言

 

2)c:libyaml编码

方式1:yum方式spa

yum install libyaml-devel libyaml

image

 

方式2:下载libyaml并编译安装.net

wget http://pyyaml.org/download/libyaml/yaml-0.1.5.tar.gz

tar -zxvf yaml-0.1.5.tar.gz
$ ./configure
$ make
# make install

 

3、编程实例3d

参考:http://pyyaml.org/wiki/LibYAML

        http://yaml.org/spec/1.1/

 

程度1:获取yaml版本信息

#include <yaml.h>

#include <stdlib.h>
#include <stdio.h>

#ifdef NDEBUG
#undef NDEBUG
#endif
#include <assert.h>

int main(void)
{
    int major = -1;
    int minor = -1;
    int patch = -1;
    char buf[64];

    yaml_get_version(&major, &minor, &patch);
    sprintf(buf, "%d.%d.%d", major, minor, patch);
    assert(strcmp(buf, yaml_get_version_string()) == 0);

    /* Print structure sizes. */
    printf("sizeof(token) = %d\n", sizeof(yaml_token_t));
    printf("sizeof(event) = %d\n", sizeof(yaml_event_t));
    printf("sizeof(parser) = %d\n", sizeof(yaml_parser_t));

    return 0;
}

编译

gcc -o example1 example1.c -lyaml

运行

image

 

 

程度2:

#include <yaml.h>

#include <stdlib.h>
#include <stdio.h>

#ifdef NDEBUG
#undef NDEBUG
#endif
#include <assert.h>

int main(int argc, char *argv[])
{
    int number;

    if (argc < 2) {
        printf("Usage: %s file1.yaml ...\n", argv[0]);
        return 0;
    }

    for (number = 1; number < argc; number ++)
    {
        FILE *file;
        yaml_parser_t parser;
        yaml_document_t document;
        int done = 0;
        int count = 0;
        int error = 0;

        printf("[%d] Loading '%s': ", number, argv[number]);
        fflush(stdout);

        file = fopen(argv[number], "rb");
        assert(file);

        assert(yaml_parser_initialize(&parser));

        yaml_parser_set_input_file(&parser, file);

        while (!done)
        {
            if (!yaml_parser_load(&parser, &document)) {
                error = 1;
                break;
            }

            done = (!yaml_document_get_root_node(&document));

            yaml_document_delete(&document);

            if (!done) count ++;
        }

        yaml_parser_delete(&parser);

        assert(!fclose(file));

        printf("%s (%d documents)\n", (error ? "FAILURE" : "SUCCESS"), count);
    }

    return 0;
}

编译

gcc -o example2 example2.c -lyaml

运行

image

相关文章
相关标签/搜索