java 输入输出流 一个类中只能使用一次吗? 流关闭后 就不能再打开吗?

publicclassInputUserInformation{/*从键盘输入,返回一个字符串*/publicStringinputName(){intcount;byt... public class InputUserInformation {
/*从键盘输入,返回一个字符串*/
public String inputName () {
int count;
byte[] b = new byte[256];
String str = "";
DataInputStream din = new DataInputStream(System.in);
BufferedInputStream in = new BufferedInputStream(din);
try {
count = in.read(b);
str = new String(b,0,count);
} catch (IOException e) {
e.printStackTrace();
System.out.print("发送I/O错误!");
} finally {
try {
din.close();
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return str;
}

public String inputPassword () {
int count;
byte[] b = new byte[256];
String str = "";
DataInputStream din = new DataInputStream(System.in);
BufferedInputStream in = new BufferedInputStream(din);
try {
count = in.read(b);
str = new String(b,0,count);
} catch (IOException e) {
e.printStackTrace();
System.out.print("发送I/O错误!");
} finally {
try {
din.close();
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return str;
}
}
展开
 我来答
lh502101107
2012-08-15 · TA获得超过840个赞
知道小有建树答主
回答量:334
采纳率:100%
帮助的人:199万
展开全部
流关闭后不能在打开,可以重新new一个。
baojiaoya
2012-08-15
知道答主
回答量:40
采纳率:0%
帮助的人:16.1万
展开全部
好像是的,得重新启动,除非你用循环
追问
是不是 就是不断重新new 一个
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
qihuiluanying
2012-08-16
知道答主
回答量:23
采纳率:0%
帮助的人:3.1万
展开全部
流关闭后不能在打开
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式