2019年8月4日

摘要: package com.day17; public class Member { //姓名 会员卡号 密码 会员积分 private String name; private int cardId; private String password; private int score; //开卡日期 private Strin... 阅读全文
posted @ 2019-08-04 23:43 不胖 阅读(161) 评论(0) 推荐(0) 编辑
 
摘要: package com.day16; import java.io.*; public class Demo03 { public static void main(String[] args){ DataInputStream dis=null; DataOutputStream dos=null; Fi... 阅读全文
posted @ 2019-08-04 20:03 不胖 阅读(177) 评论(0) 推荐(0) 编辑
 
摘要: package com.day16; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.FileReader; impo... 阅读全文
posted @ 2019-08-04 19:51 不胖 阅读(149) 评论(0) 推荐(0) 编辑
 
摘要: package com.day16; import java.io.*; public class Demo01 { public static void main(String[] args) { Demo01 de=new Demo01(); File file=new File("D://mybook\\test.txt"); /... 阅读全文
posted @ 2019-08-04 19:02 不胖 阅读(138) 评论(0) 推荐(0) 编辑