在我的 java web 应用程序中是一个基于文件的集成。他们过去常常在我们的生产服务器 opt/app/proceed/ 文件夹中发送一堆 xml 文件(例如:10000)。但是根据当前配置,我们的应用程序能够在顺序处理中处理 200 个文件。因此,延迟处理文件。我正在尝试以并行方式增加文件处理的数量。请找到代码块供您参考。
public class FileEx {
public static void main(String[] args) throws IOException {
String fileDir = "C:\\Users\\inputfiles"; //contains more than 10000 files
new FileEx().traverseFilesFromDir(new File(fileDir));
}
public void traverseFilesFromDir(File dir) throws IOException {
List<File> files = new ArrayList<File>();
if (dir == null || !dir.isDirectory()) {
throw new IllegalArgumentException("Not a valid directory (value: " + dir + ").");
}
File[] acknFiles = dir.listFiles();
int fileCount = (acknFiles == null ? 0 : acknFiles.length);
System.out.println("fileCount:::::::::" + fileCount);
Arrays.sort(acknFiles, new Comparator<File>() {
public int compare(File f1, File f2) {
return Long.valueOf(f1.lastModified()).compareTo(f2.lastModified());
}
});
**int maxNoFiles = acknFiles.length <= 500 ? acknFiles.length : 500;**
System.out.println(acknFiles.length + " Ackn found and starting to process oldest " + maxNoFiles + " files.");
for (int i = 0; i < maxNoFiles; i++) {
files.add(acknFiles[i]);
}
int fileCount1 = (files == null ? 0 : files.size());
if (fileCount1 > 0) {
for (int i = 0; i < fileCount1; i++) {
boolean success = true;// processFile(files.get(i));
if (success) {
System.out.println("File Successfully processed.");
}
}
}
}
}
如何着手改变文件处理方式。等待需要的支持/指导。