FileUtils 没有将字符串附加到文件
FileUtils not appending string to a file
我正在使用下面的代码将字符串追加到文件中。
File file = new File (rr);
FileUtils.writeStringToFile(file, "String to append",true);
我得到 "true" 下划线,提示错误 "incompatible types: boolean cannot be converted to String"。我缺少什么?
更新
我正在使用 Java 8 和 netbeans8.2 + Apache Commons IO 2.5
我认为你必须对你需要哪个重载版本有更多的了解。有多个重载版本,实际上没有你期望的签名。
我正在使用下面的代码将字符串追加到文件中。
File file = new File (rr);
FileUtils.writeStringToFile(file, "String to append",true);
我得到 "true" 下划线,提示错误 "incompatible types: boolean cannot be converted to String"。我缺少什么?
更新 我正在使用 Java 8 和 netbeans8.2 + Apache Commons IO 2.5
我认为你必须对你需要哪个重载版本有更多的了解。有多个重载版本,实际上没有你期望的签名。