import java.io.*;
public class TestRead {
public static void main(String[] args)
throws IOException//是系统提示才写上的。不懂为什么。
{
byte f = 1;
byte b = 2;
byte c = 3;
byte[] a={f,b,c};
File file = new File("c:\\MyClass.txt");
FileOutputStream out=new FileOutputStream("c:\\MyClass.txt");
out.write(a);// 这个方法只能接受数组形式。
out.close();
}
}
写的不像是面象对象的东西。~:(