在Java中,接收多個文件可以通過以下方法實現:
public class Main {
public static void main(String[] args) {
for (String filePath : args) {
System.out.println("File path: " + filePath);
}
}
}
import javax.swing.JFileChooser;
import javax.swing.filechooser.FileNameExtensionFilter;
public class Main {
public static void main(String[] args) {
JFileChooser fileChooser = new JFileChooser();
fileChooser.setMultiSelectionEnabled(true);
if (fileChooser.showOpenDialog(null) == JFileChooser.APPROVE_OPTION) {
File[] files = fileChooser.getSelectedFiles();
for (File file : files) {
System.out.println("File path: " + file.getAbsolutePath());
}
}
}
}
這些方法可以讓Java程序接收多個文件,并對它們進行處理。