我应该如何读取用户上传的图像文件并将路径存储在ArrayList中?

时间:2018-07-26 16:52:19

标签: java string arraylist file-upload web-applications

我现在正在使用它来读取目录,然后拍摄每个图像并将它们保存在数组列表中:

    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。可能吗?任何帮助表示赞赏!

0 个答案:

没有答案