我有两个课程,Test 和 Test2。Test 创建了一个 Test2 的实例,该实例用于使用 PrintStream 和 FileOutputStream 写入文件。
我收到错误消息:
write(String) has private access in PrintStream
output.write(str);
^
如果我在声明它的类中正确调用私有变量,为什么会给我这个错误?
public class Test
{
public static void main (String[] args)
{
Test2 testWrite = new Test2();
testWrite.openTextFile();
testWrite.writeToFile("Hello.");
testWrite.closeFile();
}
}
和
import java.io.*;
public class Test2{
private PrintStream output;
public void openTextFile(){
try{
output = new PrintStream(new FileOutputStream("output.txt"));
}
catch(SecurityException securityException){}
catch(FileNotFoundException fileNotFoundException){}
}
public void writeToFile(String str){
try{
output.write(str);
}
catch(IOException ioException){}
}
public void closeFile(){
try{
output.close();
}
catch(IOException ioException){}
}
}