没有导包,你加就能通过编译了
还是贴贴代码吧- import java.io.*;
- public class Test1{
- public static void main(String[] args) throws IOException { //为什么这里写成throws IOException 就不能通过编译?
- byte[] buf=new byte[10];
- int n=System.in.read(buf);
- String str=new String(buf,0,n);
- System.out.println("str="+str);
-
- }
- }
复制代码 在上张图
|