上面的代码报错:No signature of method: static java.nio.file.Files.write() is applicable for argument types: (java.lang.String, [B) values: [path\to\output\Data.csv.html, [60, 104, 116, 109, 108, 62, 60, ...]] Possible solutions: write(java.nio.file.Path, [B, [Ljava.nio.file.OpenOption;), wait(), write(java.nio.file.Path, java.lang.Iterable, [Ljava.nio.file.OpenOption;), wait(long), wait(long, int), write(java.nio.file.Path, java.lang.Iterable, java.nio.charset.Charset, [Ljava.nio.file.OpenOption;) at Script1685787280790$_run_closure3.doCall(Script1685787280790.groovy:47)
时间: 2024-03-04 11:47:55 浏览: 174
非常抱歉,我之前的代码中存在问题。在Groovy中,`Files.write()`方法的参数类型与Java略有不同,应该使用以下方式调用:
```groovy
Files.write(Paths.get(outputFilePath), htmlBuilder.toString().getBytes())
```
其中,`Paths.get()`方法用于将字符串路径转换为`Path`对象。
请尝试使用这种方式进行修改,看看能否成功执行。如果还有其他问题,请随时告诉我。
阅读全文