欢迎来到淘文阁 - 分享文档赚钱的网站! | 帮助中心 好文档才是您的得力助手!
淘文阁 - 分享文档赚钱的网站
全部分类
  • 研究报告>
  • 管理文献>
  • 标准材料>
  • 技术资料>
  • 教育专区>
  • 应用文书>
  • 生活休闲>
  • 考试试题>
  • pptx模板>
  • 工商注册>
  • 期刊短文>
  • 图片设计>
  • ImageVerifierCode 换一换

    2022年2022年简单java程 .pdf

    • 资源ID:27232710       资源大小:46.28KB        全文页数:7页
    • 资源格式: PDF        下载积分:4.3金币
    快捷下载 游客一键下载
    会员登录下载
    微信登录下载
    三方登录下载: 微信开放平台登录   QQ登录  
    二维码
    微信扫一扫登录
    下载资源需要4.3金币
    邮箱/手机:
    温馨提示:
    快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。
    如填写123,账号就是123,密码也是123。
    支付方式: 支付宝    微信支付   
    验证码:   换一换

     
    账号:
    密码:
    验证码:   换一换
      忘记密码?
        
    友情提示
    2、PDF文件下载后,可能会被浏览器默认打开,此种情况可以点击浏览器菜单,保存网页到桌面,就可以正常下载了。
    3、本站不支持迅雷下载,请使用电脑自带的IE浏览器,或者360浏览器、谷歌浏览器下载即可。
    4、本站资源下载后的文档和图纸-无水印,预览文档经过压缩,下载后原文更清晰。
    5、试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。

    2022年2022年简单java程 .pdf

    package com.linguofeng.main; import java.io.BufferedReader; import java.io.File; import java.io.IOException; import java.io.InputStreamReader; import java.util.Iterator; import java.util.TreeMap; import com.linguofeng.dao.StudentDao; import com.linguofeng.dao.impl.StudentDaoImpl; import com.linguofeng.model.Student; public class StudentMain static StudentDao dao; static BufferedReader br; public static void main(String args) /* 启动时判断数据文件是否存在,如不存在则新建. */ File file = new File(student.dat); if (!file.exists() try file.createNewFile(); catch (IOException e) e.printStackTrace(); dao = new StudentDaoImpl(); /* 获得控制台输入流*/ br = new BufferedReader(new InputStreamReader(System.in); /* 进行死循环*/ while (true) System.out.println(getLine(); System.out.println(=0 主菜单 tttttt=); System.out.println(=1 查找学生 tttttt=); System.out.println(=2 增加学生 tttttt=); System.out.println(=3 删除一个学生ttttt=); System.out.println(=4 删除所有学生ttttt=); System.out.println(=5 学生列表 tttttt=); System.out.println(=6 更新学生 tttttt=); System.out.println(=x 退出 tttttt=); System.out.println(getLine(); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 1 页,共 7 页 - - - - - - - - - System.out.print( 请选择操作 :); /* 获得控制台输入的内容*/ String input = getInput(); if (input.equals() input = x; switch (input.charAt(0) case 2 : addStu(); break; case x : System.out.println( 退出成功 ,欢迎再次使用!); System.exit(0); break; case 5 : findAll(); break; case 4 : delAll(); break; case 3 : delByNum(); break; case 1 : findByNum(); break; case 6 : updateByNum(); break; default : System.out.println( 不支持的系统指令,请重新输入 !); break; /* * 根据学生学号查询学生对象信息*/ public static void findByNum() System.out.print( 请输入要查询的学生学号:); while (true) String input = getInput(); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 2 页,共 7 页 - - - - - - - - - if (dao.findByNum(input) != null) System.out.println(dao.findByNum(input); return; else if (input.equals() return; else System.out.print( 查询失败,不存在该学生,请重新输入要删除的学生学号:); /* * 根据学生学号删除学生对象*/ public static void delByNum() System.out.println(getLine(); findAll();/* 显示所有学生信息方便进行删除操作*/ System.out.println(getLine(); System.out.println( 如需取消留空直接按回车.); System.out.print( 请输入要删除的学生学号:); while (true) String input = getInput(); if (dao.delByNum(input) System.out.println( 删除成功 !); findAll(); return; else if (input.equals() return; else System.out.print( 删除失败,不存在该学生,请重新输入要删除的学生学号:); /* * 学生列表*/ public static void findAll() TreeMap stuMap = dao.findAll(); Iterator iterator = stuMap.values().iterator(); if (!iterator.hasNext() System.out.println( 数据库为空 ); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 3 页,共 7 页 - - - - - - - - - while (iterator.hasNext() System.out.println(iterator.next(); /* * 删除所有学生对象*/ public static void delAll() while (true) System.out.print( 是否要删除所有学生信息,确定请输入YES,否请输入NO:); String input = getInput(); if (input.equals(YES) | input.equals(yes) dao.delAll(); System.out.println( 清空成功 ); return; else if (input.equals(NO) | input.equals(no) return; else System.out.println( 输入有误 ,请重新输入 !); /* * 添加学生*/ public static void addStu() while (true) System.out.print( 请输入要添加学生的个数:); String ch = null; try ch = br.readLine(); catch (IOException e) e.printStackTrace(); if (ch.equals() System.out.println( 输入有误 ,请重新输入 !); else int size = Integer.parseInt(ch); TreeMap stuMap = new TreeMap(); for (int i = 0; i size; i+) Student student = new Student(); try 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 4 页,共 7 页 - - - - - - - - - System.out.print( 请输入第 + (i + 1) + 个学生的姓名:); student.setName(br.readLine(); System.out.print( 请输入第 + (i + 1) + 个学生的学号:); student.setNum(br.readLine(); System.out.print( 请输入第 + (i + 1) + 个学生的性别 (男输 :1;女输 :0):); student.setSex(Integer.parseInt(br.readLine(); catch (IOException e) e.printStackTrace(); stuMap.put(student.getNum(), student); dao.addStu(stuMap); findAll(); return; public static void updateByNum() findAll(); System.out.print( 请输入要修改的学生学号:); while (true) String input = getInput(); String num = input; Student student = dao.findByNum(num); if (student != null) System.out.println(student); System.out.println( 如不修改直接留空按回车!); System.out.print( 请输入学生的新姓名:); input = getInput(); if (!input.equals() student.setName(input); System.out.print( 请输入学生的新学号:); input = getInput(); if (!input.equals() student.setNum(input); System.out.print( 请输入学生的新版性别(男输 :1;女输 :0):); input = getInput(); if (!input.equals() student.setSex(Integer.parseInt(input); dao.updateByNum(num, student); System.out.println( 更新成功 ,更新后的数据 :); System.out.println(dao.findByNum(student.getNum(); 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 5 页,共 7 页 - - - - - - - - - return; else if (input.equals() return; else System.out.print( 查询失败,不存在该学生,请重新输入要修改的学生学号:); public static void addTest() TreeMap stuMap = new TreeMap(); for (int i = 0; i 10000; i+) Student student = new Student(i, A + i, NUM + i, 0); stuMap.put(student.getNum(), student); dao.addStu(stuMap); return; /* * 获得 = 分割符* * return */ public static String getLine() return =; /* * 获得控制台输入* * return */ public static String getInput() String ch = ; try ch = br.readLine(); catch (IOException e) e.printStackTrace(); return ch; 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 6 页,共 7 页 - - - - - - - - - 名师资料总结 - - -精品资料欢迎下载 - - - - - - - - - - - - - - - - - - 名师精心整理 - - - - - - - 第 7 页,共 7 页 - - - - - - - - -

    注意事项

    本文(2022年2022年简单java程 .pdf)为本站会员(Che****ry)主动上传,淘文阁 - 分享文档赚钱的网站仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知淘文阁 - 分享文档赚钱的网站(点击联系客服),我们立即给予删除!

    温馨提示:如果因为网速或其他原因下载失败请重新下载,重复下载不扣分。




    关于淘文阁 - 版权申诉 - 用户使用规则 - 积分规则 - 联系我们

    本站为文档C TO C交易模式,本站只提供存储空间、用户上传的文档直接被用户下载,本站只是中间服务平台,本站所有文档下载所得的收益归上传人(含作者)所有。本站仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。若文档所含内容侵犯了您的版权或隐私,请立即通知淘文阁网,我们立即给予删除!客服QQ:136780468 微信:18945177775 电话:18904686070

    工信部备案号:黑ICP备15003705号 © 2020-2023 www.taowenge.com 淘文阁 

    收起
    展开