In Ruby I have a sample.yml file as below,
1_Group1:
path:asdf
filename:zxcv
2_Group2:
path:qwer
filename:poiu
etc etc............
Now I need to have Example.properties file Java, which should contains data as above.
Using Java, I want to read the Example.properties file.
Then need to iterate the contents based on the number of groups and get the corresponding "path" and "filename" values.
For eg: If there are 5 groups.. Group1,Group2....Group5 Then I need to iterate
for(int i=0; i< noofgroups(5);i++){
........................
String slave = aaa.getString("path");
aaa.getString("filename");
}
Like this I need to get each path and filename.
Now I have Example.properties as follws,
path:asdf
filename:zxcv
It is working (I can read and get the values)
But I need to have may keys as "path" and " fileneame". SO I need to group them.