Closedown
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user