Java学习-第一部分-第一阶段-第八节:项目-房屋出租系统(中级) ...

打印 上一主题 下一主题

主题 678|帖子 678|积分 2034

项目-房屋出租系统

笔记目录:(https://www.cnblogs.com/wenjie2000/p/16378441.html)
房屋出租系统-需求

●项目需求说明
实现基于文本界面的《房屋出租软件》。
能够实现对房屋信息的添加、修改和删除(用数组实现),并能够打印房屋明细表。
●项目界面-主菜单

●项目界面-1新增房源

●项目界面-2查找房源

●项目界面-3删除房源

●项目界面-4修改房源
如果不希望修改某个信息,则直接回车

●项目界面-5房屋列表

●项目界面-6退出系统

项目结构


结构细节


程序文件结构


代码

程序答案不唯一
HouseRentApp
  1. package com.hspedu.houserent;
  2. import com.hspedu.houserent.view.HouseView;
  3. public class HouseRentApp {
  4.     public static void main(String[] args) {
  5.         //整个程序入口
  6.         new HouseView().mainMenu();
  7.         System.out.println("已退出系统");
  8.     }
  9. }
复制代码
House
  1. package com.hspedu.houserent.domain;
  2. import com.hspedu.houserent.service.HouseService;
  3. import com.hspedu.houserent.utils.Utility;
  4. public class House {
  5.     //房屋编号  姓名  电话  地区  租金  状态
  6.     private int id;
  7.     private String name;
  8.     private String phone;
  9.     private String address;
  10.     private int rent;
  11.     private String state;
  12.     public House(int id, String name, String phone, String address, int rent, String state) {
  13.         this.id = id;
  14.         this.name = name;
  15.         this.phone = phone;
  16.         this.address = address;
  17.         this.rent = rent;
  18.         this.state = state;
  19.     }
  20.     public int getId() {
  21.         return id;
  22.     }
  23.     public void setId(int id) {
  24.         this.id = id;
  25.     }
  26.     public String getName() {
  27.         return name;
  28.     }
  29.     public void setName(String name) {
  30.         this.name = name;
  31.     }
  32.     public String getPhone() {
  33.         return phone;
  34.     }
  35.     public void setPhone(String phone) {
  36.         this.phone = phone;
  37.     }
  38.     public String getAddress() {
  39.         return address;
  40.     }
  41.     public void setAddress(String address) {
  42.         this.address = address;
  43.     }
  44.     public int getRent() {
  45.         return rent;
  46.     }
  47.     public void setRent(int rent) {
  48.         this.rent = rent;
  49.     }
  50.     public String getState() {
  51.         return state;
  52.     }
  53.     public void setState(String state) {
  54.         this.state = state;
  55.     }
  56.     @Override
  57.     public String toString() {
  58.         return id +
  59.                 "\t\t" + name +
  60.                 "\t\t" + phone +
  61.                 "\t\t" + address +
  62.                 "\t\t" + rent +
  63.                 "\t\t" + state;
  64.     }
  65. }
复制代码
HouseService
  1. package com.hspedu.houserent.service;
  2. import com.hspedu.houserent.domain.House;
  3. import com.hspedu.houserent.utils.Utility;
  4. public class HouseService {
  5.     private House[] houses;//保存House对象
  6.     private int houseNums = 1;//记录当前有多少个房屋信息
  7.     private int idCounter = 1;//记录当前的id增长到哪个值
  8.     public HouseService(int size) {
  9.         //new houses
  10.         houses = new House[size];
  11.         houses[0] = new House(1, "jack", "112", "海淀区", 2000, "未出租");
  12.     }
  13.     public boolean modify(int modifyId){
  14.         int index = -1;
  15.         for (int i = 0; i < houseNums; i++) {
  16.             if (modifyId == houses[i].getId()) {//要删除的房屋(id),是数组下标为i的元素
  17.                 index = i;//就使用index记录i
  18.                 break;
  19.             }
  20.         }
  21.         if (index == -1) {//说明delId在数组中不存在(有点绕..)
  22.             return false;
  23.         }
  24.         System.out.print("姓名("+houses[index].getName()+"):");
  25.         String name = Utility.readString(8);
  26.         houses[index].setName(name);
  27.         System.out.print("电话("+houses[index].getPhone()+"):");
  28.         String phone = Utility.readString(12);
  29.         houses[index].setPhone(phone);
  30.         System.out.print("地址("+houses[index].getAddress()+"):");
  31.         String address = Utility.readString(16);
  32.         houses[index].setAddress(address);
  33.         System.out.print("月租("+houses[index].getRent()+"):");
  34.         int rent = Utility.readInt();
  35.         houses[index].setRent(rent);
  36.         System.out.print("状态("+houses[index].getState()+"):");
  37.         String state = Utility.readString(3);
  38.         houses[index].setState(state);
  39.         return true;
  40.     }
  41.     public boolean find(int findId){
  42.         int index = -1;
  43.         for (int i = 0; i < houseNums; i++) {
  44.             if (findId == houses[i].getId()) {//要删除的房屋(id),是数组下标为i的元素
  45.                 index = i;//就使用index记录i
  46.                 break;
  47.             }
  48.         }
  49.         if (index == -1) {//说明delId在数组中不存在(有点绕..)
  50.             return false;
  51.         }
  52.         //如果找到,输出
  53.         System.out.println(houses[index].toString());
  54.         return true;
  55.     }
  56.     // add方法,添加新对象,返回boolean
  57.     public boolean add(House newHouse) {
  58.         //判断是否还可以继续添加(我们暂时不考虑数组扩容的问题)
  59.         if (houseNums == houses.length) {//不能再添加
  60.             System.out.println("数组已满,不能再添加了...");
  61.             return false;
  62.         }
  63.         //把newHouse对象加入到,新增加了一个房屋
  64.         houses[houseNums++] = newHouse;
  65.         //我们程序员需要设计一个id自增长的机制,然后更新newHouse的id
  66.         newHouse.setId(++idCounter);
  67.         return true;
  68.     }
  69.     // del方法,删除一个房屋信息
  70.     public boolean del(int delId) {
  71.         //应当先找到要删除的房屋信息对应的下标
  72.         //老韩强调,一定要搞清楚下标和房屋的编号不是一回事
  73.         int index = -1;
  74.         for (int i = 0; i < houseNums; i++) {
  75.             if (delId == houses[i].getId()) {//要删除的房屋(id),是数组下标为i的元素
  76.                 index = i;//就使用index记录i
  77.             }
  78.         }
  79.         if (index == -1) {//说明delId在数组中不存在(有点绕..)
  80.             return false;
  81.         }
  82.         //如果找到,这里需要小伙伴动脑筋
  83.         for (int i = index; i < houseNums - 1; i++) {
  84.             houses[i] = houses[i + 1];
  85.         }
  86.         //把当有存在的房屋信息的最后一个设置null
  87.         houses[--houseNums] = null;
  88.         return true;
  89.     }
  90.     //list方法,返回houses
  91.     public House[] list() {
  92.         return houses;
  93.     }
  94. }
复制代码
Utility
  1. package com.hspedu.houserent.utils;
  2. /**
  3. 工具类的作用:
  4. 处理各种情况的用户输入,并且能够按照程序员的需求,得到用户的控制台输入。
  5. */
  6. import java.util.*;
  7. /**
  8. */
  9. public class Utility {
  10.     //静态属性。。。
  11.     private static Scanner scanner = new Scanner(System.in);
  12.     /**
  13.      * 功能:读取键盘输入的一个菜单选项,值:1——5的范围
  14.      * @return 1——5
  15.      */
  16.     public static char readMenuSelection() {
  17.         char c;
  18.         for (; ; ) {
  19.             String str = readKeyBoard(1, false);//包含一个字符的字符串
  20.             c = str.charAt(0);//将字符串转换成字符char类型
  21.             if (c != '1' && c != '2' &&
  22.                     c != '3' && c != '4' && c != '5') {
  23.                 System.out.print("选择错误,请重新输入:");
  24.             } else break;
  25.         }
  26.         return c;
  27.     }
  28.     /**
  29.      * 功能:读取键盘输入的一个字符
  30.      * @return 一个字符
  31.      */
  32.     public static char readChar() {
  33.         String str = readKeyBoard(1, false);//就是一个字符
  34.         return str.charAt(0);
  35.     }
  36.     /**
  37.      * 功能:读取键盘输入的一个字符,如果直接按回车,则返回指定的默认值;否则返回输入的那个字符
  38.      * @param defaultValue 指定的默认值
  39.      * @return 默认值或输入的字符
  40.      */
  41.     public static char readChar(char defaultValue) {
  42.         String str = readKeyBoard(1, true);//要么是空字符串,要么是一个字符
  43.         return (str.length() == 0) ? defaultValue : str.charAt(0);
  44.     }
  45.     /**
  46.      * 功能:读取键盘输入的整型,长度小于2位
  47.      * @return 整数
  48.      */
  49.     public static int readInt() {
  50.         int n;
  51.         for (; ; ) {
  52.             String str = readKeyBoard(10, false);//一个整数,长度<=10位
  53.             try {
  54.                 n = Integer.parseInt(str);//将字符串转换成整数
  55.                 break;
  56.             } catch (NumberFormatException e) {
  57.                 System.out.print("数字输入错误,请重新输入:");
  58.             }
  59.         }
  60.         return n;
  61.     }
  62.     /**
  63.      * 功能:读取键盘输入的 整数或默认值,如果直接回车,则返回默认值,否则返回输入的整数
  64.      * @param defaultValue 指定的默认值
  65.      * @return 整数或默认值
  66.      */
  67.     public static int readInt(int defaultValue) {
  68.         int n;
  69.         for (; ; ) {
  70.             String str = readKeyBoard(10, true);
  71.             if (str.equals("")) {
  72.                 return defaultValue;
  73.             }
  74.             //异常处理...
  75.             try {
  76.                 n = Integer.parseInt(str);
  77.                 break;
  78.             } catch (NumberFormatException e) {
  79.                 System.out.print("数字输入错误,请重新输入:");
  80.             }
  81.         }
  82.         return n;
  83.     }
  84.     /**
  85.      * 功能:读取键盘输入的指定长度的字符串
  86.      * @param limit 限制的长度
  87.      * @return 指定长度的字符串
  88.      */
  89.     public static String readString(int limit) {
  90.         return readKeyBoard(limit, false);
  91.     }
  92.     /**
  93.      * 功能:读取键盘输入的指定长度的字符串或默认值,如果直接回车,返回默认值,否则返回字符串
  94.      * @param limit 限制的长度
  95.      * @param defaultValue 指定的默认值
  96.      * @return 指定长度的字符串
  97.      */
  98.     public static String readString(int limit, String defaultValue) {
  99.         String str = readKeyBoard(limit, true);
  100.         return str.equals("")? defaultValue : str;
  101.     }
  102.     /**
  103.      * 功能:读取键盘输入的确认选项,Y或N
  104.      * 将小的功能,封装到一个方法中.
  105.      * @return Y或N
  106.      */
  107.     public static char readConfirmSelection() {
  108.         System.out.println("请输入你的选择(Y/N): 请小心选择");
  109.         char c;
  110.         for (; ; ) {//无限循环
  111.             //在这里,将接受到字符,转成了大写字母
  112.             //y => Y n=>N
  113.             String str = readKeyBoard(1, false).toUpperCase();
  114.             c = str.charAt(0);
  115.             if (c == 'Y' || c == 'N') {
  116.                 break;
  117.             } else {
  118.                 System.out.print("选择错误,请重新输入:");
  119.             }
  120.         }
  121.         return c;
  122.     }
  123.     /**
  124.      * 功能: 读取一个字符串
  125.      * @param limit 读取的长度
  126.      * @param blankReturn 如果为true ,表示 可以读空字符串。
  127.      *                   如果为false表示 不能读空字符串。
  128.      *
  129.      * 如果输入为空,或者输入大于limit的长度,就会提示重新输入。
  130.      * @return
  131.      */
  132.     private static String readKeyBoard(int limit, boolean blankReturn) {
  133.         //定义了字符串
  134.         String line = "";
  135.         //scanner.hasNextLine() 判断有没有下一行
  136.         while (scanner.hasNextLine()) {
  137.             line = scanner.nextLine();//读取这一行
  138.             //如果line.length=0, 即用户没有输入任何内容,直接回车
  139.             if (line.length() == 0) {
  140.                 if (blankReturn) return line;//如果blankReturn=true,可以返回空串
  141.                 else continue; //如果blankReturn=false,不接受空串,必须输入内容
  142.             }
  143.             //如果用户输入的内容大于了 limit,就提示重写输入
  144.             //如果用户如的内容 >0 <= limit ,我就接受
  145.             if (line.length() < 1 || line.length() > limit) {
  146.                 System.out.print("输入长度(不能大于" + limit + ")错误,请重新输入:");
  147.                 continue;
  148.             }
  149.             break;
  150.         }
  151.         return line;
  152.     }
  153. }
复制代码
HouseView
  1. package com.hspedu.houserent.view;
  2. import com.hspedu.houserent.domain.House;
  3. import com.hspedu.houserent.service.HouseService;
  4. import com.hspedu.houserent.utils.Utility;
  5. public class HouseView {
  6.     private boolean loop = true;//控制显示菜单
  7.     private char key;//接受用户选择
  8.     private HouseService houseService = new HouseService(10);
  9.     //显示主菜单
  10.     public void mainMenu() {
  11.         do {
  12.             System.out.println("\n-----------------房屋出租系统-----------------");
  13.             System.out.println("\t\t1 新 增 房 源");
  14.             System.out.println("\t\t2 查 找 房 屋");
  15.             System.out.println("\t\t3 删 除 房 屋");
  16.             System.out.println("\t\t4 修 改 房 屋 信 息");
  17.             System.out.println("\t\t5 房 屋 列 表");
  18.             System.out.println("\t\t6 退      出");
  19.             System.out.println("\n请选择(1-6):");
  20.             key = Utility.readChar();
  21.             switch (key) {
  22.                 case '1':
  23.                     System.out.println("1 新增房源");
  24.                     addHouse();
  25.                     break;
  26.                 case '2':
  27.                     System.out.println("2 查找房屋");
  28.                     findHouse();
  29.                     break;
  30.                 case '3':
  31.                     System.out.println("3 删除房屋");
  32.                     delHouse();
  33.                     break;
  34.                 case '4':
  35.                     System.out.println("4 修改房屋信息");
  36.                     modifyHouse();
  37.                     break;
  38.                 case '5':
  39.                     System.out.println("5 房屋列表");
  40.                     listHouses();
  41.                     break;
  42.                 case '6':
  43.                     System.out.println("6 退出");
  44.                     exit();
  45.                     break;
  46.             }
  47.         } while (loop);
  48.     }
  49.     //1 添加房子
  50.     public void addHouse() {
  51.         System.out.println("=============添加房屋============ ");
  52.         System.out.print("姓名:");
  53.         String name = Utility.readString(8);
  54.         System.out.print("电话:");
  55.         String phone = Utility.readString(12);
  56.         System.out.print("地址:");
  57.         String address = Utility.readString(16);
  58.         System.out.print("月租:");
  59.         int rent = Utility.readInt();
  60.         System.out.print("状态:");
  61.         String state = Utility.readString(3);
  62.         //创建一个新的House对象,注意id是系统分配的,
  63.         House newHouse = new House(0, name, phone, address, rent, state);
  64.         if (houseService.add(newHouse)) {
  65.             System.out.println("\n========房屋添加成功=====\n");
  66.         } else {
  67.             System.out.println("\n========房屋添加失败=====\n");
  68.         }
  69.     }
  70.     //2查找
  71.     public void findHouse(){
  72.         System.out.println("=============查找房屋信息============");
  73.         System.out.println("请输入需要查找的房屋id(-1退出):");
  74.         int findId=Utility.readInt();
  75.         if (findId == -1) {
  76.             System.out.println("=============放弃查找房屋信息============");
  77.             return;
  78.         }
  79.         if (!houseService.find(findId)) {//查找不成功
  80.             System.out.println("房屋编号不存在,查找失败");
  81.         }
  82.     }
  83.     //3 删除房屋  编写delHouse()接收输入的id,调用Service 的del方法
  84.     public void delHouse() {
  85.         System.out.println("=============删除房屋信息============");
  86.         System.out.print("请输入待删除房屋的编号(-1退出):");
  87.         int delId = Utility.readInt();
  88.         if (delId == -1) {
  89.             System.out.println("=============放弃删除房屋信息============");
  90.             return;
  91.         }
  92.         //注意该方法本身就有循环判断的逻辑,必须输出Y/N
  93.         char choice = Utility.readConfirmSelection();
  94.         if (choice == 'Y') {//真的删除
  95.             if (houseService.del(delId)) {
  96.                 System.out.println("删除房屋信息成功");
  97.             } else {
  98.                 System.out.println("房屋编号不存在,删除失败");
  99.             }
  100.         } else {
  101.             System.out.println("=============放弃删除房屋信息============");
  102.         }
  103.     }
  104.     //4修改
  105.     public void modifyHouse(){
  106.         System.out.println("-----------------修改信息-----------------");
  107.         System.out.print("请输入修改房屋的编号(-1退出):");
  108.         int modifyId = Utility.readInt();
  109.         if (modifyId == -1) {
  110.             System.out.println("=============放弃查找房屋信息============");
  111.             return;
  112.         }
  113.         if (!houseService.modify(modifyId)){//未找到
  114.             System.out.println("房屋编号不存在");
  115.         }
  116.     }
  117.     //5 编写listHouse()显示房屋列表
  118.     public void listHouses() {
  119.         System.out.println("-----------------房屋列表-----------------");
  120.         System.out.println("编号\t\t房主\t\t电话\t\t地址\t\t月租\t\t状态(未出租/已出租)");
  121.         House[] houses = houseService.list();//得到所有房屋信息
  122.         for (int i = 0; i < houses.length; i++) {
  123.             if (houses[i] == null) {
  124.                 break;
  125.             }
  126.             System.out.println(houses[i]);
  127.         }
  128.         System.out.println("\n=============房屋列表显示完毕============\n");
  129.     }
  130.     //6 退出
  131.     //完成退出确认
  132.     public void exit() {
  133.         //这里我们使用Utility提供方法,完成确认
  134.         char c = Utility.readConfirmSelection();
  135.         if (c == 'Y') {
  136.             loop = false;
  137.         }
  138.     }
  139. }
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

知者何南

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表