Java parsing Yaml and Android parsing Yaml

Source: Internet
Author: User

First, Java parsing yaml

1. Selection of APIs

Generally divided into two kinds: Jyaml and Snakeyaml. (jyaml:http://download.csdn.net/detail/dgssfgfs/8477109)

Import of 2.Jar Packages

This needless to say, do not own Baidu.

Analysis of 3.yaml

    1. ......
    2. Import Org.ho.yaml.Yaml;
    3. ......
    4. File F = new file ("Y.yaml");
    5. FileInputStream fi=new FileInputStream (F.getabsolutepath ());
    6. HashMap HM = Yaml.loadtype (FI, Hashmap.class);

Yaml.loadtype The first parameter is also a string that is read by Yaml file.

Second, Android parsing Yaml

The choice of 1.API

The API mentioned above only supports Java, on Android or error, because the reference to Java.beans.Introspector, Android is not supported.

A jar package is provided for the purpose of parsing yaml for Android. Connection: http://download.csdn.net/detail/dgssfgfs/8485943

Import of 2.Jar Packages

Analysis of 3.yaml

    1. ......
    2. Import Org.yaml.snakeyaml.Yaml;
    3. ......
    4. Yaml ya=new Yaml ();
    5. HashMap data = (HASHMAP) ya.load (content);

Here load is not a static method, so an object needs to be created.

Java parsing Yaml and Android parsing Yaml

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.