我正在将现有的 Java 1.7 项目转换为 1.6。我改变了钻石操作并尝试使用资源。然而,1.7 具有 1.6 所没有的一些文件操作功能。我怎样才能将这行代码更改为 1.6:
OutputStream fileStream = Files.newOutputStream(path); //there is no Files class
java.nio.file.Files.createDirectories(outputRoot.toPath()); //there is not toPath() method
also Path class
请您参考如下方法:
您可以将第一行替换为:
OutputStream fileStream = new FileOutputStream(path);
您可以将第二行替换为:
outputRoot.mkdirs();