我现在正在使用它来读取目录,然后拍摄每个图像并将它们保存在数组列表中:
Scanner s=new Scanner(System.in);
System.out.println("Enter the directory path of the images (for eg c:\\test)");
String imgPath=s.nextLine();
ArrayList<String> links = new ArrayList<>();
File f=new File(imgPath);
File[] f2=f.listFiles();
for(File f3:f2)
{
links.add(f3.getAbsolutePath());
}
如何修改它,以便可以对用户在Web应用程序中上传的图像文件执行相同的操作,并另存为String的ArrayList。可能吗?任何帮助表示赞赏!