我弄乱了Java问题,这看起来很奇怪,所以我没有在互联网上找到任何东西。
我想创建一个小程序,只搜索特定文件以删除它们。 (目前还没有)现在,程序只搜索目录和子目录中的所有文件。它工作但有时(约50/50)JList,我用来显示文件,没有显示任何东西。 (这是我遇到的问题)我没有更改任何文件,没有任何更改.jar,它只是有时没有显示元素。
我还检查了数组是否为空,其中有元素,即使List没有显示它们。如果您知道解决方案,那将会很有意义。谢谢。
这是代码:(就是你知道,我没有自己编写GetAllFiles函数)
变量:
JList output;
JScrollPane outputScrollPanel;
DefaultListModel outputContent;
String[] files;
int fileIndex;
File source;
构造
add(output = new JList());
outputContent = new DefaultListModel();
output.setModel(outputContent);
add(outputScrollPanel = new JScrollPane(output));
outputScrollPanel.setBounds(20, 20, getWidth() - 50, getHeight() - 40);
files = new String[0];
fileIndex = 0;
SearchFiles();
SearchFiles-function和GetAllFiles(我尽了最大努力,没有使用多余的名字;)
private void SearchFiles() {
source = new File("");
GetAllFiles(source);
for(int i = 0; i < fileIndex; i++) {
outputContent.addElement(files[i]);
}
}
private void GetAllFiles(File dir) {
File[] fileList = dir.getAbsoluteFile().listFiles();
if (fileList != null) {
for (int i = 0; i < fileList.length; i++) {
if (fileList[i].isDirectory()) {
GetAllFiles(fileList[i]);
} else {
if(fileIndex%100 == 0) {
IncreaseFileListSize();
}
// i am so proud of this one: (it just adds the relative path + file name to the files-array
files[fileIndex] = fileList[i].toString().substring(source.getAbsolutePath().toString().length()+1);
fileIndex++;
}
}
}
}