I'm pretty new to Java, so don't kill me :)
FileInputStream files = new FileInputStream(path);
Properties prop = new Properties();
try {
props.load(fis);
.....
Let's say the files is:
Mary goes to school,
or,
not.
How can I see how the information was stocked inside the prop variable. I understand that every information, is stocked based on a key. How that key is selected?