Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Sorry I didn't give such a good title. Here's my yml (databases.yml)

default: <br>
  #Default host - localhost <br>
  host: localhost <br>
  #Default username - root <br>
  username: root <br>
  #Default password - pass. Set to nopass for no password <br>
  password: pass <br>
  #Default database - BMod <br>
  database: bmod <br>

This is my java code:

    YamlReader reader = new YamlReader(new FileReader(BMod.config+"/databases.yml")); <br>
    Object object = reader.read(); <br>
    System.out.println(object); <br>
    Map map = (Map)object; <br>
    System.out.println(map.get("default")); <br>

As you can see by System.out.println(map.get("default")); I can get values fine in the main file. But say I want to get "default.host". How do I do this with YAMLBeans?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.