如何使用IO和java中的不同流在文件中写入和读取数据?
我正在尝试在ABC.txt文件中写入文件(例如XYZ)并使用输入/输出字节和字符串流?
请给出广泛的解释?
这是我到目前为止所做的:
import java.io.*;
class WriteData1 {
public static void main(String[] args) throws IOException {
System.out.println("TRyimg to write in the text");
PrintStream ps = new PrintStream(System.out);
ps.println("Hi");
ps.println("Its show time");
ps.close();
}
}
答案 0 :(得分:1)
如果您使用的是PrintStream,则应将File作为参数传递。
PrintStream ps = new PrintStream( new File("ABC.txt"));