Java中while语句中如何使用read()方法
2个回答
2019-09-25
展开全部
File file = new File(fileName);
InputStream in = null;
byte[] b= new byte[1024];
try {
in = new FileInputStream(file);
int tempbyte;
while ((tempbyte = in.read(b,0,b.length)) != -1) {
String str = new String(bytes,0,n,"GBK"); // 转换成字符串
System.out.println(str); //打印出来
out.write(b, 0, n); //写入相关文件 }
in.close();
} catch (IOException e) {
e.printStackTrace();
return;
}
InputStream in = null;
byte[] b= new byte[1024];
try {
in = new FileInputStream(file);
int tempbyte;
while ((tempbyte = in.read(b,0,b.length)) != -1) {
String str = new String(bytes,0,n,"GBK"); // 转换成字符串
System.out.println(str); //打印出来
out.write(b, 0, n); //写入相关文件 }
in.close();
} catch (IOException e) {
e.printStackTrace();
return;
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
具体的需求呢
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询