却首苍穹 2星
共回答了271个问题 评论
"reader" 这个变量是接收系统输入的字符串,而且 byte数组没有赋值。且局部变量必须有初始值。 //输出流 FileOutputStream fos = new FileOutputStream("file.txt"); BufferedInputStream reader = new BufferedInputStream(System.in); byte[] bt=new byte[256]; fos.write(reader.read(bt)); reader.close(); fos.flush(); fos.close(); System.out.println(bt[0]);
1小时前
猜你喜欢的问题
5个月前1个回答
5个月前1个回答
5个月前1个回答
5个月前2个回答
5个月前1个回答
5个月前2个回答
热门问题推荐
4个月前1个回答
3年前1个回答
1个月前3个回答
3个月前1个回答
3个月前2个回答
1个月前2个回答
3个月前1个回答
3个月前3个回答
2个月前1个回答