new PrintStream(new FileOutputStream())路径怎么填
时间: 2024-05-03 16:02:56 浏览: 57
在 `FileOutputStream` 的构造函数中填写需要输出的文件路径,例如:
```java
new PrintStream(new FileOutputStream("path/to/file.txt"));
```
其中,`"path/to/file.txt"` 是你需要输出的文件路径。请确保该路径是正确的,并且你具有对该路径的写入权限。
阅读全文