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; } } 展开
 我来答
梅仕束兰月
2019-01-04 · TA获得超过1168个赞
知道小有建树答主
回答量:1374
采纳率:100%
帮助的人:5.9万
展开全部
那么上一级方法是不是一定不可以有输入输出流对象呢?
比如说你可以再上一级方法当中创建流然后作为参数代入到下一级去
或者上一级创建一个没有实体的输入输出流的引用,然后把引用传递到下一级方法当中去,这样就可以再上一级方法的最后关闭流了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式