请在 下方输入 要搜索的题目:

1..请说出E类中标注的【代码1】~【代码4】的输出结果。 import java.io. *; public class E{ public static void main(String args ]){ int n= - 1; File f = new File( " hello.txt"); byte]a= "abcd" . getBytes(); try{ FileOutputStream out = new FileOutputStream(f); out.write(a); out.close(); FileInputStream in = new FileInputStream(f); byte] tom= new byte 3]; int m= in. read(tom, 0,3); System. out. println(m);//【代码1】 String s = new String(tom, 0, 3); System. out. println(s); //代码2】 m= in.read(tom, 0, 3); System. out. println(m);//代码3】 s = new String( tom, 0,3); System. out. println(s);//【代码4】 catch( IOException e){} } } 

输出结果: 3 abc 1 abc

发布时间:2024-05-12 22:27:56
推荐参考答案 ( 由 搜题小帮手 官方老师解答 )
联系客服
答案:

以下文字与答案无关

提示:有些试题内容 显示不完整,文字错误 或者 答案显示错误等问题,这是由于我们在扫描录入过程中 机器识别错误导致,人工逐条矫正总有遗漏,所以恳请 广大网友理解。

相关试题
登录 - 搜题小帮手
点我刷新
立即注册
注册 - 搜题小帮手
点我刷新
立即登录