Java小白学习客户信息管理软件项目开发+源码
Posted Java架构师-大仙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java小白学习客户信息管理软件项目开发+源码相关的知识,希望对你有一定的参考价值。
前面的几篇文章介绍了Java中的基本语法、数组还有一些常见的异常,我们可以通过已经掌握的知识点做这个小项目
项目简介
模拟实现基于文本界面的《客户信息管理软件》。
该软件能够实现对客户对象的插入、修改和删除(用数组实现),并能够打印客户明细表。
涉及的知识点
- 类结构的使用:属性、方法及构造器
- 对象的创建与使用
- 类的封装性
- 声明和使用数组
- 数组的插入、删除和替换
- 关键字的使用:this
项目需求:
- 每个客户的信息被保存在Customer对象中。
- 以一个Customer类型的数组来记录当前所有的客户。
- 每次“添加客户”(菜单1)后,客户(Customer)对象被添加到数组中。
- 每次“修改客户”(菜单2)后,修改后的客户(Customer)对象替换数组中原对象。
- 每次“删除客户”(菜单3)后,客户(Customer)对象被从数组中清除。
- 执行“客户列表 ”(菜单4)时,将列出数组中所有客户的信息。
项目菜单展示
主菜单界面
-----------------客户信息管理软件-----------------
1 添 加 客 户
2 修 改 客 户
3 删 除 客 户
4 客 户 列 表
5 退 出
请选择(1-5):_
添加客户界面
请选择(1-5):1
---------------------添加客户---------------------
姓名:佟刚
性别:男
年龄:35
电话:010-56253825
邮箱:tongtong@atguigu.com
---------------------添加完成---------------------
修改客户界面
请选择(1-5):2
---------------------修改客户---------------------
请选择待修改客户编号(-1退出):1
姓名(佟刚):<直接回车表示不修改>
性别(男):
年龄(35):
电话(010-56253825):
邮箱(tongtong@163.com):tongg@123.com
---------------------修改完成---------------------
删除客户界面
请选择(1-5):3
---------------------删除客户---------------------
请选择待删除客户编号(-1退出):1
确认是否删除(Y/N):y
---------------------删除完成---------------------
客户列表界面
请选择(1-5):4
---------------------------客户列表---------------------------
编号 姓名 性别 年龄 电话 邮箱
1 佟刚 男 45 010-56253825 tong@abc.com
2 封捷 女 36 010-56253825 fengjie@ibm.com
3 雷丰阳 男 32 010-56253825 leify@163.com
-------------------------客户列表完成-------------------------
项目设计结构
- CustomerView为主模块,负责菜单的显示和处理用户操作
- CustomerList为Customer对象的管理模块,内部用数组管理一组Customer对象,并提供相应的添加、修改、删除和遍历方法,供CustomerView调用
- Customer为实体对象,用来封装客户信息
项目实现
项目采用MVC设计结构,对项目的包结构进行分层管理
项目包结构:
- bean包下存放Customer类
存放客户对象,设置客户属性实现get set 方法,提供构造器
- service包存放CustomerList类
用于实现增删改查等功能
- util包下存放通用抽取类CMUtility
用于实现键盘读入操作
- view包下存放界面显示类CustomerView
用于在操作台显示界面进行交互操作
项目类设计
通用键盘访问类CMUtility设计
设计通用的键盘读取方法,将所有的键盘读取操作进行封装
package com.bruce.project.project02.util;
import java.util.Scanner;
/**
* 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位的整数,并将其作为方法的返回值。
* 欢迎加入Java开发交流君样:673927155
*//ghhg
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;
}
}
客户类Customer类设计
对用户的属性进行封装,提供空参数构造器和带有所有参数的构造器
package com.bruce.project.project02.bean;
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;
}
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;
}
/**
*
* @Description 显示用户信息的方法
* @author Bruce
* @return String
*/
public String getDetails() {
return name + "\\t" + gender + "\\t" + age + "\\t\\t" + phone + "\\t" + email;
}
}
客户操作类CustomerList类设计
设计项目中客户的添加、删除、修改、显示等功能
package com.bruce.project.project02.service;
import com.bruce.project.project02.bean.Customer;
public class CustomerList {
private Customer[] customers;
private int total = 0;
/**
* 构造器,用来初始化customers数组
*
* @param totalCustomer
*/
public CustomerList(int totalCustomer) {
customers = new Customer[totalCustomer];
}
/**
*
* @Description 添加客户的方法
* @author Bruce
* @param customer
* @return boolean 添加成功返回true;false表示数组已满,无法添加
*/
public boolean addCustomer(Customer customer) {
if (total >= customers.length) {
return false;
}
customers[total++] = customer;
return true;
}
/**
*
* @Description 修改客户信息的方法
* @author Bruce
* @param index
* 指定所替换对象在数组中的位置,从0开始
* @param cust
* @return boolean 替换成功返回true;false表示索引无效,无法替换
*
*/
public boolean repalceCustomer(int index, Customer cust) {
if (index < 0 || index >= total) {
return false;
}
customers[index] = cust;
return true;
}
/**
*
* @Description 删除客户信息的方法
* @author Bruce
* @param index 指定所删除对象在数组中的索引位置,从0开始
* @return boolean 删除成功返回true;false表示索引无效,无法删除
*/
public boolean deleteCustomer(int index) {
if (index < 0 || index >= total) {
return false;
}
for (int i = 0; i < total - 1; i++) {
customers[i] = customers[i + 1];
}
customers[--total] = null;
return true;
}
/**
*
* @Description 获取全部客户信息
* @author Bruce
* @return Customer[]数组中包含了当前所有客户对象,该数组长度与对象个数相同。
*/
public Customer[] getAllCustomers() {
Customer[] custs = new Customer[total];
for (int i = 0; i < total; i++) {
custs[i] = customers[i];
}
return custs;
}
/**
*
* @Description TODO
* @author Bruce
* @param index
* @return 封装了客户信息的Customer对象
*/
public Customer getCustomer(int index) {
if (index < 0 || index >= total) {
return null;
}
return customers[index];
}
public int getTotal() {
return total;
}
}
客户显示界面类CustomerView类设计
在控制台显示的主要界面
package com.bruce.project.project02.view;
import com.bruce.project.project02.bean.Customer;
import com.bruce.project.project02.service.CustomerList;
import com.bruce.project.project02.util.CMUtility;
public class CustomerView {
private CustomerList customers = new CustomerList(10);
// 初始建立一个用户
public CustomerView() {
Customer cust = new Customer("张三", '男', 30, "1151511215", "abs@163.com");
customers.addCustomer(cust);
}
/**
*
* @Description 软件主界面,显示功能
* @author Bruce void
*/
public void enterMainMenu() {
boolean loopFlag = true;
do {
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 key = CMUtility.readMenuSelection();
System.out.println();
switch (key) {
case '1':
addNewCustomer();
break;
case '2':
modifyCustomer();
break;
case '3':
deleteCustomer();
break;
case '4':
listAllCustomer();
break;
case '5':
System.out.println("是否退出(Y/N):");
char yn = CMUtility.readConfirmSelection();
if (yn == 'Y') {
loopFlag = false;
}
break;
default:
break;
}
} while (loopFlag新手小白学习Java需要先学习哪些