我有一个问题,我想将文件从一个目录复制到另一个目录。
Path source = Paths.get(files[i].getPath());
Path target = Paths.get(dir.getName() + "/" + files[i].getName());
try {
Files.copy(source, target, StandardCopyOption.REPLACE_EXISTING);
files[i] = target.toFile();
} catch (IOException e) {
throw new IOException("\t\tUnable to move " + files[i].getName(), e);
}
此代码可以正常工作,但我正在运行JRE 1.8,而我想运行它的系统正在运行JRE 1.6。 路径和文件仅在JRE 1.7之后可用。
有没有办法可以使用eclipse或java编译器用 jar文件打包这些类。