0

我设法通过

Files.copy(Paths.get(file.toURI()), System.out);

如何将一系列字符写入文件?我没有看到任何影响

Files.copy(new ByteArrayInputStream(content.getBytes()), Paths.get(file.getName()))

它看起来很丑。

4

1 回答 1

0

我已经成功了

Files.write(Paths.get(file.getName()), content.getBytes());
于 2013-11-12T15:13:20.737 回答