Closedown

This commit is contained in:
boccioli_m
2015-06-09 11:38:09 +02:00
parent ee2acc55f4
commit 30dfce818c

View File

@@ -369,6 +369,15 @@ public class TestingList extends Panel {
this.jTextField1.append("File " + listOfFile.getName());
} else if (listOfFile.isDirectory()) {
this.jTextField1.append("Directory " + listOfFile.getName());
File configFile = new File(listOfFile.getPath() + "\\.config");
if(configFile.exists() && !configFile.isDirectory()){
InputStream is = new FileInputStream(configFile);
prop.load(is);
addToTable(prop.getProperty("name"), prop.getProperty("description"));
this.jTextField1.append(prop.getProperty("name"));
}
}
}
//InputStream is = new FileInputStream(fileName);