JAVA获取磁盘盘符

File[] roots = File.listRoots();
for (int i =0; i < roots.length; i++) {
   System.out.println(roots[i]);
}

你可能感兴趣的:(其他)