1创建 Student 类;( id , name , age )·2创建 Test 类,
使用 ArrayList < Student > al = new ArrayList ();来存储多个对象·并进行输出。
·3尝试将学生的对象写入字符流文件t1.txt
2条回答 默认 最新
关注 public class Studs { private String no; private String name; private int age; public String getNo() { return no; } public void setNo(String no) { this.no = no; } public String getName() { return name; } public void setName(String name) { this.name = name; } public int getAge() { return age; } public void setAge(int age) { this.age = age; } public Studs(String no,String name ,int age){ this.no=no; this.name=name; this.age=age; } @Override public String toString() { return "Student [no=" + no + ", name=" + name + ", age=" + age + "]"; } public static void main(String[] args) { ArrayList< Studs > al = new ArrayList (); Studs studs1=new Studs("001","张三",18); Studs studs2=new Studs("002","李四",18); Studs studs3=new Studs("003","王五",18); al.add(studs1); al.add(studs2); al.add(studs3); String fileRequestPar ="d:/test"; try { FileWriter fwRequst = new FileWriter(fileRequestPar + "/" + "t1.txt", true); String requestTxt =al.toString() ; fwRequst.write(requestTxt); fwRequst.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 matlab中频率调制法代码的解读
- ¥15 ceph的对象、块、文件相关问题求解答
- ¥50 如果使用python进行ERA5 10米风场预报检验
- ¥15 navicat解析mysql密码
- ¥15 SDAPI(关键词-table)
- ¥15 unity安卓打包出现问题
- ¥20 安装catkin时遇到了如下问题请问该如何解决呢
- ¥15 VAE模型如何输出结果
- ¥15 编译python程序为pyd文件报错:{"source code string cannot contain null bytes"
- ¥20 关于#r语言#的问题:广义加行模型拟合曲线后如何求拐点