JAVA基础补漏--文件读取
public class Test2 { public static void main(String[] args) throws IOException { FileInputStream fis = new FileInputStream("1.txt"); int len = 0; byte[] bytes = new by...