使用java从Excel数据创建文件夹和子文件夹

时间:2013-11-26 16:20:02

标签: java excel

从excel文件中读取并根据这些数据,excel表格如下:

Parent_folder    Sub_Folder1   Sub_folder2
University         Department  Faculty
                   Months

Test               Types        

从excel文件中我如何使用java生成目录?

1 个答案:

答案 0 :(得分:1)

这是你如何做到的。

从excel读取并将其放入字符串中。附加驱动器名称或要添加到其中的任何其他目录(例如dirName)。

所以,

  String dirName = <Your directory name with the folder name you fetch from the excel>
  new File(dirName).mkdir();