java练习之客户信息管理软件项目

今天学习了java客户信息管理软件编写,对之前学习的一次应用和回顾,涉及数组、类、对象、关键字的使用。故留笔记。

项目需求

实现如下图片中的界面化的客户信息管理。在这里插入图片描述

项目文件架构

│ CMUtility.java
│ Customer.java
│ CustomerList.java
│ CustomerView.java

└─以上为本项目所需java文件,放在了同一个Package下

  • CMUtility.java:为接受用户输入的工具类(不需要自己写

  • CustomerView.java:为主模块,负责菜单的显示和处理用户操作(界面

  • CustomerList.java:为Customer对象的管理模块,内部用数组管理一组Customer对象,并提供相应的添加、修改、删除和遍历方法,供CustomerView调用

  • Customer.java:为实体对象,用来封装客户信息

在这里插入图片描述

启动方式

  • 运行CustomerView.java即可执行。

项目具体代码

接下来分别来写Customer.java,CustomerList.java,CustomerView.java中的代码

⭐️Customer.java

package javaProject2_my;

 /** 
 * @ClassName: Customer 
 * @Description: 用来封装客户信息
 * @author: Troublemaker
 * @date: 2020年11月28日 下午3:03:06  
 */
public class Customer {
	// 属性
	private String name; // 客户姓名
	private char gender; //性别
	private int age; //年龄
	private String phone; //电话号码
	private String email; //电子邮箱
	
	// 构造器
	public Customer() {
		
	}
	public Customer(String name, char gender, int age, String phone, String email) {
		this.name = name;
		this.gender = gender;
		this.age = age;
		this.phone = phone;
		this.email = email;
	}
	// get set 方法
	public String getName() {
		return name;
	}
	
	public void setName(String name) {
		this.name = name;
	}
	
	public char getGender() {
		return gender;
	}
	
	public void setGender(char gender) {
		this.gender = gender;
	}
	
	public int getAge() {
		return age;
	}
	
	public void setAge(int age) {
		this.age = age;
	}
	
	public String getPhone() {
		return phone;
	}
	
	public void setPhone(String phone) {
		this.phone = phone;
	}
	
	public String getEmail() {
		return email;
	}
	
	public void setEmail(String email) {
		this.email = email;
	}
	// 该函数是自己添加的,方便写完测试用
	public void printInfo() {
		System.out.println("姓名:" + name + ",性别 :" + gender + ",年龄:" + age);
	}
}

⭐️⭐️⭐️CustomerList.java

package javaProject2_my;

 /** 
 * @ClassName: CustomerList 
 * @Description: 作为Customer对象的管理模块
 * @author: Troublemaker
 * @date: 2020年11月28日 下午3:22:20  
 */
public class CustomerList {
	// 属性
	private Customer[] customerList; // 用来保存客户对象的数组
	private int total = 0; // 用来记录已保存的客户数量
	
	// 构造器
	public CustomerList() {
		
	}
	
	public CustomerList(int totalCustomer) {
		customerList = new Customer[totalCustomer];
	}
	
	// 方法
	/** 
	* @Title: addCustomer 
	* @Description: 将参数customer添加到数组中最后一个客户对象记录之后
	* @param customer
	* @return boolean
	* @author Trouble
	* @date 2020年11月28日下午3:30:21
	*/ 
	public boolean addCustomer(Customer customer) {
		if(customerList.length <= total) {
			System.out.println("数组已满, 无法添加");
			return false;
		}
		customerList[total] = customer;
		total ++;
		return true;
	}
	
	/** 
	* @Title: replaceCustomer 
	* @Description: 用参数cust替换数组中由index指定的对象
	* @param index
	* @param cust
	* @return boolean
	* @author Troublemaker
	* @date 2020年11月28日下午4:19:38
	*/ 
	public boolean replaceCustomer(int index, Customer cust) {
		if(index < 0 || index >= total) {
			System.out.println("索引无效,无法替换");
			return false;
		}
		customerList[index] = cust;
		System.out.println("替换成功");
		return true;
	}

	/** 
	* @Title: deleteCustomer 
	* @Description: 从数组中删除指定索引位置(参数index)的客户对象记录
	* @param index
	* @return boolean
	* @author Troublemaker
	* @date 2020年11月28日下午4:25:49
	*/ 
	public boolean deleteCustomer(int index) {
		if(index < 0 || index >= total) {
			System.out.println("索引无效,无法删除");
			return false;
		}
		for(int i=index; i<total-1; i++) {
			customerList[i] = customerList[i + 1];
		}
		// 最后一个元素置空
		customerList[total - 1] = null;
		total --;
		return true;
		
	}
	
	/** 
	* @Title: getAllCustomer 
	* @Description: 返回数组中记录的所有客户对象
	* @return Customer
	* @author Troublemaker
	* @date 2020年11月28日下午3:46:15
	*/ 
	public Customer[] getAllCustomer() {
		Customer[] allCustomers = new Customer[total];
		for(int i=0; i<total; i++) {
			allCustomers[i] = customerList[i];
		}
		return allCustomers;
	}
	
	/** 
	* @Title: getCustomer 
	* @Description: 返回指定索引位置(参数index)的客户对象记录
	* @param index
	* @return Customer
	* @author Troublemaker
	* @date 2020年11月28日下午4:09:34
	*/ 
	public Customer getCustomer(int index) {
		if(index < 0 || index >= customerList.length) {
			System.out.println("索引不在customerList范围内");
			return null;
		}
		else if(index >= total && index < customerList.length) {
			System.out.println("索引超出了customerList中的客户数量");
			return null;
		}
		else {
			return customerList[index];
		}
	}
	
	public int getTotal() {
		return total;
	}
}

⭐️⭐️CustomerView.java

package javaProject2_my;

public class CustomerView {
	// 属性
	CustomerList customerList = new CustomerList(10);
	
	// 方法
	public void enterMainMenu() {
		boolean isExit = true;
		while(isExit) {
			System.out.println("\n-----------------客户信息管理软件-----------------\n");
			System.out.println("                   1 添 加 客 户");
			System.out.println("                   2 修 改 客 户");
			System.out.println("                   3 删 除 客 户");
			System.out.println("                   4 客 户 列 表");
			System.out.println("                   5 退       出\n");
			System.out.print("                   请选择(1-5):");
			
			char choice = CMUtility.readMenuSelection();
			switch (choice) {
			case '1':
				addNewCustomer();
				break;
			case '2':
				modifyCustomer();
				break;
			case '3':
				deleteCustomer();
				break;
			case '4':
				listAllCustomers();
				break;
			case '5':
				System.out.print("是否确认退出(Y/N):");
				char exitInfo = CMUtility.readConfirmSelection(); 
				if (exitInfo == 'Y') {
					isExit = false;
				}
				break;
			}	
		}
		System.out.println("程序已退出");
	}
	
	// 对应界面中的<添加客户>选项
	private void addNewCustomer() {
		System.out.println("---------------------添加客户---------------------");
		System.out.print("姓名:");
		String name = CMUtility.readString(5);
		System.out.print("性别:");
		char gender = CMUtility.readChar();
		System.out.print("年龄:");
		int age = CMUtility.readInt();
		System.out.print("电话:");
		String phone = CMUtility.readString(13);
		System.out.print("邮箱:");
		String email = CMUtility.readString(30);
		
		Customer customer = new Customer(name, gender, age, phone, email);
		boolean isAdd = customerList.addCustomer(customer);
		if (isAdd) {
			System.out.println("---------------------添加完成---------------------");
		} else {
			System.out.println("----------------记录已满,无法添加-----------------");
		}
	}
	
	// 对应界面中的<修改客户>选项
	private void modifyCustomer() {
		System.out.println("---------------------修改客户---------------------");
		int number;
		while (true) {
			System.out.print("请选择待修改客户编号,输入(-1)退出");
			number = CMUtility.readInt();
			if (number == -1) {
				return;
			}
			Customer modCust = customerList.getCustomer(number - 1);
			if (modCust == null) {
				System.out.println("无法找到指定客户!");
			}
			else {
				System.out.print("姓名(" + modCust.getName() + ")");
				String name = CMUtility.readString(5, modCust.getName());
				System.out.print("性别(" + modCust.getGender() + ")");
				char gender = CMUtility.readChar(modCust.getGender());
				System.out.print("年龄(" + modCust.getAge() + ")");
				int age = CMUtility.readInt(modCust.getAge());
				System.out.print("电话(" + modCust.getPhone() + ")");
				String phone = CMUtility.readString(13, modCust.getPhone());
				System.out.print("邮箱(" + modCust.getEmail() + ")");
				String email = CMUtility.readString(30, modCust.getEmail());
				
				Customer replaceCust = new Customer(name, gender, age, phone, email);
				boolean isMod = customerList.replaceCustomer(number-1, replaceCust);
				if (isMod) {
					System.out.println("---------------------修改完成---------------------");
					break;
				} 
				else {
					System.out.println("----------无法找到指定客户,修改失败--------------");
				}
			}
		}
	}
	
	// 对应界面中的<删除客户>选项
	private void deleteCustomer() {
		System.out.println("---------------------删除客户---------------------");
		int number;
		while (true) {
			System.out.print("请选择待修改客户编号,输入(-1)退出");
			number = CMUtility.readInt();
			if (number == -1) {
				return;
			}
			
			Customer deleteCust = customerList.getCustomer(number - 1);
			if (deleteCust == null) {
				System.out.println("无法找到指定客户!");
			}
			else {
				System.out.print("确认是否删除(Y/N):");
				char isYN = CMUtility.readConfirmSelection();
				if(isYN == 'Y') {
					boolean isDelete = customerList.deleteCustomer(number -1);
					if (isDelete) {
						System.out.println("---------------------删除完成---------------------");
						return;
					} 
					else {
						System.out.println("----------无法找到指定客户,删除失败--------------");
					}
				}
				else {
					break;
				}
			}
		}
	}
	
	// 对应界面中的<客户列表>选项
	private void listAllCustomers() {
		System.out.println("---------------------------客户列表---------------------------");
		int custNum = customerList.getTotal();
		if (custNum <= 0) {
			System.out.println("没有客户记录!");
		}
		else {
			System.out.println("编号\t姓名\t性别\t年龄\t电话\t\t邮箱");
			Customer[] custList = customerList.getAllCustomer();
			for(int i=0; i<custList.length; i++) {
				System.out.println((i + 1) + "\t" + custList[i].getName() + "\t" + custList[i].getGender() + "\t" + custList[i].getAge()
				+ "\t" + custList[i].getPhone() + "\t" + custList[i].getEmail());
			}
		}
		System.out.println("-------------------------客户列表完成-------------------------");
	}
	
	// 程序入口
	public static void main(String[] args) {
		CustomerView menu = new CustomerView();
		menu.enterMainMenu();
	}
}

CMUtility.java

该脚本只是拿过来用,并非自己所写,此处也贴一下

package javaProject2_my;


import java.util.*;
/**
CMUtility工具类:
将不同的功能封装为方法,就是可以直接通过调用方法使用它的功能,而无需考虑具体的功能实现细节。
*/
public class CMUtility {
    private static Scanner scanner = new Scanner(System.in);
    /**
	用于界面菜单的选择。该方法读取键盘,如果用户键入’1’-’5’中的任意字符,则方法返回。返回值为用户键入字符。
	*/
	public static char readMenuSelection() {
        char c;
        for (; ; ) {
            String str = readKeyBoard(1, false);
            c = str.charAt(0);
            if (c != '1' && c != '2' && 
                c != '3' && c != '4' && c != '5') {
                System.out.print("选择错误,请重新输入:");
            } else break;
        }
        return c;
    }
	/**
	从键盘读取一个字符,并将其作为方法的返回值。
	*/
    public static char readChar() {
        String str = readKeyBoard(1, false);
        return str.charAt(0);
    }
	/**
	从键盘读取一个字符,并将其作为方法的返回值。
	如果用户不输入字符而直接回车,方法将以defaultValue 作为返回值。
	*/
    public static char readChar(char defaultValue) {
        String str = readKeyBoard(1, true);
        return (str.length() == 0) ? defaultValue : str.charAt(0);
    }
	/**
	从键盘读取一个长度不超过2位的整数,并将其作为方法的返回值。
	*/
    public static int readInt() {
        int n;
        for (; ; ) {
            String str = readKeyBoard(2, false);
            try {
                n = Integer.parseInt(str);
                break;
            } catch (NumberFormatException e) {
                System.out.print("数字输入错误,请重新输入:");
            }
        }
        return n;
    }
	/**
	从键盘读取一个长度不超过2位的整数,并将其作为方法的返回值。
	如果用户不输入字符而直接回车,方法将以defaultValue 作为返回值。
	*/
    public static int readInt(int defaultValue) {
        int n;
        for (; ; ) {
            String str = readKeyBoard(2, true);
            if (str.equals("")) {
                return defaultValue;
            }

            try {
                n = Integer.parseInt(str);
                break;
            } catch (NumberFormatException e) {
                System.out.print("数字输入错误,请重新输入:");
            }
        }
        return n;
    }
	/**
	从键盘读取一个长度不超过limit的字符串,并将其作为方法的返回值。
	*/
    public static String readString(int limit) {
        return readKeyBoard(limit, false);
    }
	/**
	从键盘读取一个长度不超过limit的字符串,并将其作为方法的返回值。
	如果用户不输入字符而直接回车,方法将以defaultValue 作为返回值。
	*/
    public static String readString(int limit, String defaultValue) {
        String str = readKeyBoard(limit, true);
        return str.equals("")? defaultValue : str;
    }
	/**
	用于确认选择的输入。该方法从键盘读取‘Y’或’N’,并将其作为方法的返回值。
	*/
    public static char readConfirmSelection() {
        char c;
        for (; ; ) {
            String str = readKeyBoard(1, false).toUpperCase();
            c = str.charAt(0);
            if (c == 'Y' || c == 'N') {
                break;
            } else {
                System.out.print("选择错误,请重新输入:");
            }
        }
        return c;
    }

    private static String readKeyBoard(int limit, boolean blankReturn) {
        String line = "";

        while (scanner.hasNextLine()) {
            line = scanner.nextLine();
            if (line.length() == 0) {
                if (blankReturn) return line;
                else continue;
            }

            if (line.length() < 1 || line.length() > limit) {
                System.out.print("输入长度(不大于" + limit + ")错误,请重新输入:");
                continue;
            }
            break;
        }

        return line;
    }
}

实现效果

在这里插入图片描述

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值