我一直在使用Java编写文件,并以c9.io作为平台,但是收到了fileNotFoundException
(即使该文件确实存在)。在以下几行中找到该错误:
import java.util.*;
import java.io.*;
public class test {
public static void main (String[] args){
PrintWriter pw = new PrintWriter(new File("test.out"));`
a picture of the local workspace can be found here
我尝试了所有可以找到的方法(使用
file.createnewfile
等),但它们没有起作用。
有人可以解释发生了什么事吗?