[求助]菜鸟问问题
为什么可以用byte[] b来接收啊,为什么不可以用byte b来接收啊??import java.io.*;
public class test
{
public static void main(String[] args)throws IOException
{
FileInputStream in=new FileInputStream("test.txt");
int i=in.read();
while(true)
{
int n=in.available();
if(n>0)
{
byte[] b=new byte[n];
if(in.read(b)==-1)
return;
String s=new String(b);
System.out.println(s);
}
}
}
}