项目开发团队管理软件的结构分析

系统功能结构:

需求说明:

模块结构:

domain包中的实体类:

Equipment接口:

        Equipment接口中只定义了一个抽象方法getDescription()用于实现类重写输出设备信息

package com.team.domain;

public interface Equipment {
public abstract String getDescription();
}

Equipment接口的实现类:

PC类:

PC类为台式电脑配置类,用于给程序员配置台式电脑

package com.team.domain;

import com.team.view.TSUtility;

//台式电脑
public class PC implements Equipment{
	//机器型号
	private String model;
	//显示器名称
	private String display;

	

	public PC() {
		super();
	}

	public PC(String model, String display) {
		super();
		this.model = model;
		this.display = display;
	}

	public String getModel() {
		return model;
	}

	public void setModel(String model) {
		this.model = model;
	}

	public String getDisplay() {
		return display;
	}

	public void setDisplay(String display) {
		this.display = display;
	}

	public PC  addPC()
	{
		System.out.println("请输入需要配置的台式电脑的型号:");
		String model = TSUtility.readKeyBoard(10, false);
		System.out.println("请输入需要配置的台式电脑的显示器名称:");
		String display = TSUtility.readKeyBoard(10, false);
		System.out.println("设备添加成功!");
		return new PC(model, display);

	}
	@Override
	public String getDescription() {
		return model + "(" + display + ")";
	}
	
}

NoteBook类:

NoteBook类为笔记本电脑配置类,用于给设计师配置笔记本电脑

package com.team.domain;

import com.team.view.TSUtility;

//笔记本电脑
public class NoteBook implements Equipment{
	private String model;//机器的型号
	private double price;//价格
	
	
	public NoteBook() {
		super();
	}


	public NoteBook(String model, double price) {
		super();
		this.model = model;
		this.price = price;
	}


	public String getModel() {
		return model;
	}


	public void setModel(String model) {
		this.model = model;
	}


	public double getPrice() {
		return price;
	}


	public void setPrice(double price) {
		this.price = price;
	}

	public NoteBook addNoteBook()
	{
		System.out.println("请输入需要配置的笔记本电脑的型号:");
		String model = TSUtility.readKeyBoard(10, false);
		System.out.println("请输入需要配置的笔记本电脑的价格:");
		Double price = TSUtility.readDouble();
		System.out.println("设备添加成功!");
		return new NoteBook(model, price);
	}


	@Override
	public String getDescription() {
		return model + "(" + price + ")";
	}
	
	

}

Printer类:

Printer类为打印机类,用于给架构师配备打印机的

package com.team.domain;

import com.team.view.TSUtility;

public class Printer implements Equipment {
   private String name;//打印机名字
   private  String type;//打印机类型
    public Printer(){super();}
    public Printer(String name,String type){
        super();
        this.name=name;
        this.type=type;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public Printer addPrinter(){
        System.out.println("请输入需要配置的打印机名字:");
        String name = TSUtility.readKeyBoard(10, false);
        System.out.println("请输入需要配置的打印机类型:");
        String type = TSUtility.readKeyBoard(10, false);
        System.out.println("设备添加成功!");
        return new Printer(name,type);
    }
    @Override
    public String getDescription() {
        return name+"("+type+")";
    }
}

雇员及项目实体类:

Employee类:

package com.team.domain;

public class Employee {
    private int id;
    private String name;
    private int age;
    private double salary;

    public Employee() {
    }

    public Employee(int id, String name, int age, double salary) {
        this.id = id;
        this.name = name;
        this.age = age;
        this.salary = salary;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public double getSalary() {
        return salary;
    }

    public void setSalary(double salary) {
        this.salary = salary;
    }

    protected String getDetails() {
        return id + "\t" + name + "\t" + age+ "\t\t" +salary;
    }

    @Override
    public String toString() {
        return getDetails();
    }
}

Employee子类Programmer类(程序员):

package com.team.domain;

public class Programmer extends Employee {
    public int memberId;
    private boolean status = true;
    private Equipment equipment;

    public Programmer() {
    }

    public Programmer(int id, String name, int age, 
                       double salary, Equipment equipment) {
        super(id, name, age, salary);
        this.equipment = equipment;
    }

    public Boolean getStatus() {
        return status;
    }

    public void setStatus(Boolean status) {
        this.status = status;
    }

    public Equipment getEquipment() {
        return equipment;
    }

    public void setEquipment(Equipment equipment) {
        this.equipment = equipment;
    }

    public int getMemberId() {
        return memberId;
    }

    public void setMemberId(int memberId) {
        this.memberId = memberId;
    }

    protected String getMemberDetails() {
        return getMemberId() + "/" + getDetails();
    }

    public String getDetailsForTeam() {
        return getMemberDetails() + "\t程序员";
    }

    @Override
    public String toString() {
        return getDetails() + "\t程序员\t" + status + "\t\t\t\t\t" + equipment.getDescription() ;
    }
}

Programmer子类Designer类(设计师):

package com.team.domain;

public class Designer extends Programmer{
    private double bonus;

    public Designer() {
    }

    public Designer(int id, String name, int age, double salary, Equipment equipment, double bonus) {
        super(id, name, age, salary, equipment);
        this.bonus = bonus;
    }

    public double getBonus() {
        return bonus;
    }

    public void setBonus(double bonus) {
        this.bonus = bonus;
    }

    public String getDetailsForTeam() {
        return getMemberDetails() + "\t设计师\t" + getBonus();
    }

    @Override
    public String toString() {
        return getDetails() + "\t设计师\t" + getStatus() + "\t" +
               getBonus() +"\t\t\t" + getEquipment().getDescription();
    }
}

Designer子类Architect类(架构师):

package com.team.domain;


public class Architect extends Designer {
    private int stock;

    public Architect() {
    }

    public Architect(int id, String name, int age, double salary, Equipment equipment, double bonus, int stock) {
        super(id, name, age, salary, equipment, bonus);
        this.stock = stock;
    }

    public int getStock() {
        return stock;
    }

    public void setStock(int stock) {
        this.stock = stock;
    }

    @Override
    public String getDetailsForTeam() {
        return getMemberDetails() + "\t架构师\t" + 
               getBonus() + "\t" + getStock();
    }

    @Override
    public String toString() {
        return getDetails() + "\t架构师\t" + getStatus() + "\t" +
               getBonus() + "\t" + getStock() + "\t" + getEquipment().getDescription();
    }
}

Project类(项目实体类):

package com.team.domain;

import com.team.view.TeamView;

import java.util.Arrays;

public class Project {
    private int prold;//项目号
    private String projectName;//项目名称
    private String desName;//项目描述
    private Programmer[] team;//开发团队
    private String teamName;//开发团队名称
    private boolean status;//true为开发中,false为未开发中

    public Project(){}
    public Project(int prold, String projectName, String desName, Programmer[] team, String teamName, boolean status) {
        this.prold = prold;
        this.projectName = projectName;
        this.desName = desName;
        this.team = team;
        this.teamName = teamName;
        this.status = status;
    }

    public int getProId() {
        return prold;
    }

    public void setProId(int prold) {
        this.prold = prold;
    }

    public String getProName() { return projectName; }

    public void setProName(String projectName) {
        this.projectName = projectName;
    }

    public String getDesName() {
        return desName;
    }

    public void setDesName(String desName) {
        this.desName = desName;
    }

    public Programmer[] getTeam() {
        return team;
    }

    public void setTeam(Programmer[] team) {
        this.team = team;
    }

    public String getTeamName() {
        return teamName;
    }

    public void setTeamName(String teamName) {
        this.teamName = teamName;
    }

    public boolean getStatus() {
        return status;
    }

    public void setStatus(boolean status) {
        this.status = status;
    }

    @Override
    public String toString() {
        return "项目信息{" +
                "项目号:" + prold +
                ",  项目名称:'" + projectName + '\'' +
                ",  项目描述:'" + desName + '\'' +
                ", 开发团队:" + Arrays.toString(team)+
                ", 开发团队名称'" + teamName + '\'' +
                ", 项目状态:" + status +
                '}';
    }
}

service包中的操作类:

NameListService员工管理类:

提供员工数据初始化及员工增删改查操作

package com.team.service;

import com.team.domain.*;
import com.team.view.TSUtility;

import java.util.ArrayList;
import java.util.Scanner;

public class NameListService {
    //用来装员工的数据集合
    private ArrayList<Employee> employees = new ArrayList<>();

    //添加员工的id
    private int count = 1;

    //初始化默认值
    {
        employees.add(new Employee(count, "马云 ", 22, 3000));
        employees.add(new Architect(++count, "马化腾", 32, 18000, new NoteBook("联想T4", 6000), 60000, 5000));
        employees.add(new Programmer(++count, "李彦宏", 23, 7000, new PC("戴尔", "NEC 17寸")));
        employees.add(new Programmer(++count, "刘强东", 24, 7300, new PC("戴尔", "三星 17寸")));
        employees.add(new Designer(++count, "雷军 ", 50, 10000, new Printer("激光", "佳能2900"), 5000));
        employees.add(new Programmer(++count, "任志强", 30, 16800, new PC("华硕", "三星 17寸")));
        employees.add(new Designer(++count, "柳传志", 45, 35500, new PC("华硕", "三星 17寸"), 8000));
        employees.add(new Architect(++count, "杨元庆", 35, 6500, new Printer("针式", "爱普生20k"), 15500, 1200));
        employees.add(new Designer(++count, "史玉柱", 27, 7800, new NoteBook("惠普m6", 5800), 1500));
        employees.add(new Programmer(++count, "丁磊 ", 26, 6600, new PC("戴尔", "NEC17寸")));
        employees.add(new Programmer(++count, "张朝阳 ", 35, 7100, new PC("华硕", "三星 17寸")));
        employees.add(new Designer(++count, "杨致远", 38, 9600, new NoteBook("惠普m6", 5800), 3000));
    }

    //得到所有员工数据集合
    public ArrayList<Employee> getAllEmployees() {
        return employees;
    }

    //得到当前员工
    public Employee getEmployee(int id) throws TeamException {

        for (int i = 0; i < employees.size(); i++) {

            if (employees.get(i).getId() == id) {
                return employees.get(i);
            }
        }
        throw new TeamException("该员工不存在");
    }

    //员工的增加
    public void addEmployee() throws InterruptedException {
        System.out.println("请输入需要添加的雇员的职位:");
        System.out.println("1(无职位)");
        System.out.println("2(程序员)");
        System.out.println("3(设计师)");
        System.out.println("4(架构师)");
        String c = String.valueOf(TSUtility.readMenuSelection());
        if (c.equals("1")) {
            //无职位 new Employee(count++,"马云 ",22,3000)
            System.out.println("`当前雇员职位分配为:无`");
            System.out.println("请输入当前雇员的姓名:");
            String name = TSUtility.readKeyBoard(4, false);
            System.out.println("请输入当前雇员的年龄:");
            int age = TSUtility.readInt();
            System.out.println("请输入当前雇员的工资:");
            Double salary = TSUtility.readDouble();
            Employee employee = new Employee(++count, name, age, salary);
            employees.add(employee);
            System.out.println("人员添加成功!");
            TSUtility.readReturn();
        } else if (c.equals("2")) {
            //程序员 new Programmer(count++,"张朝阳 ",35,7100,new PC("华硕","三星 17寸"))
            System.out.println("`当前雇员职位分配为:程序员`");
            System.out.println("请输入当前雇员的姓名:");
            String name = TSUtility.readKeyBoard(4, false);
            System.out.println("请输入当前雇员的年龄:");
            int age = TSUtility.readInt();
            System.out.println("请输入当前雇员的工资:");
            Double salary = TSUtility.readDouble();
            System.out.println("请为当前程序员配一台好的台式电脑:");
            PC pc = new PC().addPC();
            Programmer programmer = new Programmer(++count, name, age, salary, pc);
            employees.add(programmer);
            System.out.println("人员添加成功!");
            TSUtility.readReturn();
        } else if (c.equals("3")) {
            //设计师 new Designer(count++,"史玉柱",27,7800,new NoteBook("惠普m6",5800),1500)
            System.out.println("`当前雇员职位分配为:设计师`");
            System.out.println("请输入当前雇员的姓名:");
            String name = TSUtility.readKeyBoard(4, false);
            System.out.println("请输入当前雇员的年龄:");
            int age = TSUtility.readInt();
            System.out.println("请输入当前雇员的工资:");
            Double salary = TSUtility.readDouble();
            System.out.println("请为当前设计师配一台好的笔记本电脑:");
            NoteBook noteBook = new NoteBook().addNoteBook();
            System.out.println("请输入当前设计师的奖金:");
            Double bonus = TSUtility.readDouble();
            Designer designer = new Designer(++count, name, age, salary, noteBook, bonus);
            employees.add(designer);
            System.out.println("人员添加成功!");
            TSUtility.readReturn();

        } else{
            //架构师 new Architect(count++,"杨元庆",35,6500,new Printer("针式","爱普生20k"),15500,1200)
            System.out.println("`当前雇员职位分配为:架构师`");
            System.out.println("请输入当前雇员的姓名:");
            String name = TSUtility.readKeyBoard(4, false);
            System.out.println("请输入当前雇员的年龄:");
            int age = TSUtility.readInt();
            System.out.println("请输入当前雇员的工资:");
            Double salary = TSUtility.readDouble();
            System.out.println("请为当前架构师配一台好的打印设备:");
            Printer printer = new Printer().addPrinter();
            System.out.println("请输入当前架构师的奖金:");
            Double bonus = TSUtility.readDouble();
            System.out.println("请输入当前架构师的股票:");
            Integer stock = TSUtility.readstock();
            Architect architect = new Architect(++count, name, age, salary, printer, bonus, stock);
            employees.add(architect);
            System.out.println("人员添加成功!");
            TSUtility.readReturn();
        }
    }

    //员工的删除
    public void delEmployee(int id)  {
        boolean flag = false;
        for (int i = 0; i < employees.size(); i++) {
            if (employees.get(i).getId() == id) {
                employees.remove(i);
                for (i = id; i <= employees.size(); i++) {
                    employees.get(i - 1).setId(employees.get(i - 1).getId() - 1);//修改删除元素后的元素ID
                }
                flag = true;
            }
        }
        if (flag) {
            System.out.println("删除成功!");
            count--;
        } else {
            try {
                throw new TeamException("该员工不存在");
            } catch (TeamException e) {
                e.printStackTrace();
            }
        }

    }

    //员工的查看
    public void showEmployee() throws InterruptedException {
        TSUtility.loadSpecialEffects();
        System.out.println("ID\t 姓名\t年龄\t     工资\t 职位\t 状态\t 奖金\t 股票\t 领用设备");
        for (int i = 0; i < employees.size(); i++) {
            System.out.println(" " + employees.get(i));
        }
    }

    //员工的修改 (目前只修改姓名,年龄,工资即可)
    public void modifyEmployee(int id) throws  InterruptedException {
        boolean flag = false;
        for (int i = 0; i < employees.size(); i++) {
            Employee emp = employees.get(i);
            if (employees.get(i).getId() == id) {

                System.out.print("姓名(" + emp.getName() + "):");
                String name = TSUtility.readString(4, emp.getName());
                System.out.print("年龄(" + emp.getAge() + "):");
                int age = Integer.parseInt(TSUtility.readString(2,emp.getAge()+""));
                System.out.print("工资(" + emp.getSalary() + "):");
                double salary =Double.parseDouble(TSUtility.readString(10, emp.getSalary()+""));
                emp.setName(name);
                emp.setAge(age);
                emp.setSalary(salary);
                employees.set(i,emp);
                flag = true;
            }
        }
        if (flag) {
            System.out.println("修改成功!");
        } else {
            try {
                throw new TeamException("该员工不存在");
            } catch (TeamException e) {
                e.printStackTrace();
            }
        }
    }

}

ProjectService项目管理类:

提供项目增查删及项目分配的方法

package com.team.service;

import com.team.domain.Programmer;
import com.team.domain.Project;
import com.team.view.TSUtility;

import java.util.ArrayList;
import java.util.Random;

/**
 * @author :卿艾迪
 * @date :Created in 2021/3/26 15:44
 * @description:项目相关模块操作
 * 项目参考:
 * 1.小米官网:开发完成类似于小米官网的web项目
 * 2.公益在线商城:猫宁Morning公益商城是中国公益性在线电子商城,以商城B2C模式运营的公益在线商城。
 * 3.博客系统:Java博客系统,让每一个有故事的人更好的表达想法!使用了轻量级 mvc 框架Blade开发,默认主题使用了漂亮的pinghsu。
 * 4.在线协作文档编辑系统:多人在线协作文档编辑器是一个很常用的功能,适合小组内的文档编辑。
 */
public class ProjectService {
    private ArrayList<Project> pro=new ArrayList<>();
    private int count=1;

    //添加项目
    public void  addProject() throws InterruptedException {

            System.out.println("项目参考:--------------------------------------------------");
            System.out.println("1.小米官网:开发完成类似于小米官网的web项目.");
            System.out.println("2.公益在线商城:猫宁Morning公益商城是中国公益性在线电子商城.");
            System.out.println("3.博客系统:Java博客系统,让每一个有故事的人更好的表达想法!");
            System.out.println("4.在线协作文档编辑系统:一个很常用的功能,适合小组内的文档编辑。");
            System.out.println("------------------------------------------------------------");
            TSUtility.readReturn();
            System.out.println("请选择你想添加的项目编号: ");
            char c = TSUtility.readMenuSelection();
            switch (c) {
                case '1':
                    Project p1 = new Project();
                    p1.setProId(count++);
                    p1.setProName("小米官网");
                    p1.setDesName("开发完成类似于小米官网的web项目.");
                    pro.add(p1);
                    TSUtility.loadSpecialEffects();
                    System.out.println("已添加项目:"+p1.getProName());
                    break;
                case '2':
                    Project p2 = new Project();
                    p2.setProId(count++);
                    p2.setProName("公益在线商城");
                    p2.setDesName("猫宁Morning公益商城是中国公益性在线电子商城.");
                    pro.add(p2);
                    TSUtility.loadSpecialEffects();
                    System.out.println("已添加项目:"+p2.getProName());
                    break;
                case '3':
                    Project p3 = new Project();
                    p3.setProId(count++);
                    p3.setProName("博客系统");
                    p3.setDesName("Java博客系统,让每一个有故事的人更好的表达想法!");
                    pro.add(p3);
                    TSUtility.loadSpecialEffects();
                    System.out.println("已添加项目:"+p3.getProName());
                    break;
                case '4':
                    Project p4 = new Project();
                    p4.setProId(count++);
                    p4.setProName("在线协作文档编辑系统");
                    p4.setDesName("一个很常用的功能,适合小组内的文档编辑。");
                    pro.add(p4);
                    TSUtility.loadSpecialEffects();
                    System.out.println("已添加项目:"+p4.getProName());
                    break;
                default:
                    System.out.println("项目不存在");
                    break;
            }
    }
    //给项目分配团队
    public void dealingPro(Programmer[] team) throws InterruptedException{
        System.out.println("当前团队有人员:");
        for (int i = 0; i < team.length; i++) {
            System.out.println(team[i]);
        }
        System.out.println("请为当前团队创建一个团队名称:");
        String teamName = TSUtility.readKeyBoard(6, false);
        //随机分配项目
        Random ra = new Random();
        int ranNum = ra.nextInt(pro.size());//随机分配
        Project project = this.pro.get(ranNum);//将集合中的随机项目取出给p
        project.setTeamName(teamName);
        project.setTeam(team);
        project.setStatus(true);

        pro.set(ranNum,project);//将位置为ranNum的数据改为project
        System.out.println("-------项目分配成功-------");
    }
    //查看目前项目情况
    public void showPro() throws InterruptedException {
        TSUtility.loadSpecialEffects();
        if (pro.size()==0){
            try {
                throw new TeamException("暂无项目");
            } catch (TeamException e) {
                e.printStackTrace();
            }
        }else{
            for(int i = 0; i < pro.size(); i++) {
                System.out.println(pro.get(i));
            }
        }
    }
    //删除选择的项目
    public void delPro(int id) throws TeamException{
        boolean flag = false;
        boolean status = false;//表示项目是否被团队开发
        for (int i = 0; i < pro.size(); i++) {
            if (pro.get(i).getProId() == id) {
                if(pro.get(i).getStatus()){//==ture
                    status=true;//项目已被开发
                }else{
                    pro.remove(i);
                    for (i = id; i <= pro.size(); i++) {
                        pro.get(i - 1).setProId(pro.get(i - 1).getProId() - 1);
                    }
                    flag = true;
                }

            }
        }
        if (status){
            try {
                throw new TeamException("项目已被开发,不能删除该项目");
            } catch (TeamException e) {
                System.out.println(e.getMessage());
            }
        }else{
            if (flag) {
                System.out.println("删除成功!");
                count--;
            } else {
                try {
                    throw new TeamException("该项目不存在");
                } catch (TeamException e) {
                    System.out.println(e.getMessage());
                }
            }
        }
    }
    //得到所有项目数据集合
    public ArrayList<Project> getAllPro() {
        return pro;
    }


}

TeamService团队管理类:

提供团队成员的添加删除及返回团队成员数组方法

package com.team.service;

import com.team.domain.Architect;
import com.team.domain.Designer;
import com.team.domain.Employee;
import com.team.domain.Programmer;


public class TeamService {
    //用于自动生成团队成员的memberId
    private static int counter = 1;
    //团队人数上限
    private final int MAX_MEMBER = 5;
    //保存当前团队成员
    private Programmer[] team = new Programmer[MAX_MEMBER];
    //团队实际人数
    private int total = 0;

    public TeamService() {
    }
    //返回team中所有程序员构成的数组
    public Programmer[] getTeam() {
        Programmer[] team = new Programmer[total];

        for (int i = 0; i < total; i++) {
            team[i] = this.team[i];
        }
        return team;
    }
    //初始化当前团队成员数组
    public void clearTeam() {
        team = new Programmer[MAX_MEMBER];
        counter=1;
        total=0;
        this.team = team;
    }

    //增加团队成员
    public void addMember(Employee e) throws TeamException {
        if (total >= MAX_MEMBER){
            throw new TeamException("成员已满,无法添加");}
        if (!(e instanceof Programmer)) {
            throw new TeamException("该成员不是开发人员,无法添加");
        }
        Programmer p = (Programmer)e;
        
        if (isExist(p)) {
            throw new TeamException("该员工已在本团队中");
        }
        if(!p.getStatus()) {
        	throw new TeamException("该员工已是某团队成员");
        }

        
        int numOfArch = 0, numOfDsgn = 0, numOfPrg = 0;
        for (int i = 0; i < total; i++) {
            if (team[i] instanceof Architect) {numOfArch++;}
            else if (team[i] instanceof Designer){ numOfDsgn++;}
            else if (team[i] instanceof Programmer){ numOfPrg++;}
        }

        if (p instanceof Architect) {
            if (numOfArch >= 1)
            {throw new TeamException("团队中至多只能有一名架构师");}
        } else if (p instanceof Designer) {
            if (numOfDsgn >= 2)
            {throw new TeamException("团队中至多只能有两名设计师");}
        } else if (p instanceof Programmer) {
            if (numOfPrg >= 3)
            {throw new TeamException("团队中至多只能有三名程序员");}
        }
        //添加到数组
        p.setStatus(false);
        p.setMemberId(counter++);
        team[total++] = p;
    }

    private boolean isExist(Programmer p) {
        for (int i = 0; i < total; i++) {
            if (team[i].getId() == p.getId()) return true;
        }

        return false;
    }
    //删除指定memberId的程序员
    public void removeMember(int memberId) throws TeamException {
        int n = 0;
        //找到指定memberId的员工,并删除
        for (; n < total; n++) {
            if (team[n].getMemberId() == memberId) {
                team[n].setStatus(true);
                break;
            }
        }
        //如果遍历一遍,都找不到,则报异常
        if (n == total)
            throw new TeamException("找不到该成员,无法删除");
        //后面的元素覆盖前面的元素
        for (int i = n + 1; i < total; i++) {
            team[i - 1] = team[i];
        }
        team[--total] = null;
    }

}

view包中的视图类:

LoginView登录视图类:

实现登录界面显示,登录注册功能以及修改用户名密码功能(注:此出只涉及基本逻辑,登录之前需进行)

package com.team.view;

import java.util.Random;
import java.util.Scanner;

/**
 * @author :卿艾迪
 * @date :Created in 2021/3/25 11:06
 * @description:项目的登录和注册
 */
public class LoginView {
    //首先给定属性:登录用户和密码
    private String userName = "";
    private String password = "";

    //注册功能
    public void regist() throws InterruptedException {
        TSUtility.loadSpecialEffects();
        System.out.println("开始注册:");
        Scanner sc = new Scanner(System.in);
        System.out.println("请输入你的注册账户名称:");
        String userName = TSUtility.readKeyBoard(4, false);
        this.userName = userName;
        System.out.println("请输入你的注册密码:");
        String password = TSUtility.readKeyBoard(8, false);
        this.password = password;
        System.out.println("注册成功!请登录!");

    }

    //登录功能
    public void login() throws InterruptedException {
        //登录失败的次数限制
        int count = 5;
        boolean flag = true;
        while (flag) {
            System.out.println("********************🐱");
            System.out.println("***   <登录界面>   ***");
            System.out.println("***     (:      ***🐱");
            System.out.println("********************🐱");

            System.out.println("请输入你的登录账户名称:");
            String userName = TSUtility.readKeyBoard(4, false);
            System.out.println("请输入你的登录密码:");
            String password = TSUtility.readKeyBoard(8, false);
            //未注册
            if (this.userName.length() == 0 || this.password.length() == 0) {
                System.out.println("未检测到您的账号,请您先注册!");
                regist();

            }
            //已注册
            //正常登录
            else if (this.userName.equals(userName) && this.password.equals(password)) {
                TSUtility.loadSpecialEffects();
                System.out.println("登陆成功!欢迎您:" + userName);
                flag = false;
            } else {
                if (count <= 0) {
                    System.out.println("登录次数不足!退出!");
                    return;
                } else {
                    count--;
                    System.out.println("登录失败!用户名或密码不匹配!");
                    System.out.println("登录次数还剩" + count + "次,请重新输入:");
                }
            }
        }

    }

    //修改功能
    public void update() throws InterruptedException {
        boolean flag = true;
        while (flag) {
            System.out.println("********************🐱");
            System.out.println("***   <修改界面>   ***");
            System.out.println("***     (:      ***🐱");
            System.out.println("********************🐱");

            System.out.println("请输入你需要修改的类型:");
            System.out.println("1(修改用户名)");
            System.out.println("2(修改密码名)");
            System.out.println("3(修改用户名和密码名)");
            System.out.println("4(不修改,退出)");
            Scanner sc = new Scanner(System.in);
            String options = sc.next();
            if (options.equals("1")) {
                System.out.println("请输入你的修改的账户名称:");
                String userName = TSUtility.readKeyBoard(4, false);
                this.userName = userName;
                System.out.println("修改成功!");
            } else if (options.equals("2")) {
                System.out.println("请输入你的修改密码:");
                String password = TSUtility.readKeyBoard(8, false);
                this.password = password;
                System.out.println("修改成功!");
            } else if (options.equals("3")) {
                System.out.println("请输入你的修改的账户名称:");
                String userName = TSUtility.readKeyBoard(4, false);
                this.userName = userName;
                System.out.println("请输入你的修改密码:");
                String password = TSUtility.readKeyBoard(8, false);
                this.password = password;
                System.out.println("修改成功!");
            }
            else if (options.equals("4")) {
                System.out.println("退出中");
                TSUtility.loadSpecialEffects();
                flag = false;
            }
            else  {
                System.out.println("输入错误!请输入“1”或者“2”或者“3”或者“4”:");
            }
        }
    }


}

TeamView团队管理类:

        提供团队管理界面显示调用TeamService类中的操作方法,该类有两级菜单界面,一级菜单界面为主页中调用的getManyTeam()方法返回team团队集合,该方法提供团队添加查看及删除;二级菜单界面为getManyTeam()方法中添加团队时调用enterMainMenu()方法将团队成员加入团队并保存,该方法提供团队成员增删及显示

package com.team.view;

import com.team.domain.Employee;
import com.team.domain.Programmer;
import com.team.service.NameListService;
import com.team.service.TeamException;
import com.team.service.TeamService;
import java.util.ArrayList;
import java.util.Scanner;


public class TeamView {
    private NameListService listSvc = new NameListService();
    private TeamService teamSvc = new TeamService();
    private Employee e = new Employee();
    private Scanner sc = new Scanner(System.in);
    private static IndexView iv=new IndexView();
    private ArrayList<Programmer[]> team=new ArrayList<>();
    public TeamView() {}
    //主菜单
    public void enterMainMenu() throws InterruptedException, TeamException {
        boolean flag = true;
        do {
            System.out.println("-------------------------开发团队调度软件-------------------------");
            listAllEmployees();
            System.out.println("----------------------------------------------------------------");
            System.out.println("1-团队列表 2-添加团队成员 3-删除团队成员 4-退出  请选择(1-4):");
            char key = TSUtility.readMenuSelection();
            switch (key) {
                case '1':
                    getTeam();
                    break;
                case '2':
                    addMember();
                    break;
                case '3':
                    deleteMember();
                    break;
                case '4':
                    System.out.println("确认是否退出(Y/N):");
                    char yn = TSUtility.readConfirmSelection();
                    if (yn == 'Y') {
                        if(teamSvc.getTeam().length==0){
                            break;
                        }else{
                            team.add(teamSvc.getTeam());//将添加的团队存入集合中去
                            teamSvc.clearTeam();//初始化团队数组,以便下次加入新的团队
                        }
                        flag = false;
                    }
                    break;
                default:
                    System.out.println("输入错误,请重新输入");
                    break;
            }
        } while (flag);
    }

    //调用NameListService中的showEmployee方法显示所有员工信息
    public void listAllEmployees() throws InterruptedException {
        ArrayList<Employee> emps=listSvc.getAllEmployees();
        if (emps.size()==0){
            System.out.println("暂无员工");
        }else{
            listSvc.showEmployee();
        }
    }

    //显示团队成员列表
    public void getTeam() {
        System.out.println("---------------------团队成员列表---------------------");
        Programmer[] team=teamSvc.getTeam();
        if (team.length==0){
            System.out.println("目前团队暂无成员");
        }else{
            System.out.println("TDI/ID  姓名     年龄    工资     职位    奖金    股票 ");
        }
        for (int i=0;i<team.length;i++) {
            team[i].memberId=i+1;
            System.out.println("  "+team[i].getDetailsForTeam());
        }
        System.out.println("---------------------------------------------------");
    }

    //添加团队成员
    public void addMember() throws TeamException {
        System.out.println("请输入要添加的成员ID:");
        int id=TSUtility.readInt();//调用TSUtility的readInt()来限制输入的ID
        try {
            Employee e=listSvc.getEmployee(id);
            teamSvc.addMember(e);
        }catch (TeamException e){
            System.out.println("添加失败,失败原因为:"+e.getMessage());
        }
    }

    //删除团队成员
    public void deleteMember() throws TeamException {
        System.out.println("请输入要删除的成员ID");
        int id1=TSUtility.readInt();//调用TSUtility的readInt()来限制输入的ID
        System.out.println("确定是否删除(Y/N):");
        char yn=TSUtility.readConfirmSelection();//调用TSUtility的readConfirmSelection()来限制输入的字符
        if(yn=='Y'){
            try {
                teamSvc.removeMember(id1);
            }catch (TeamException e){
                System.out.println("删除失败,失败原因为:"+e.getMessage());
            }
        }
    }

    //加入更多团队
    public ArrayList<Programmer[]> getManyTeam(NameListService nameListSer) throws TeamException, InterruptedException {
        Boolean flag=true;
        char key='0';
        listSvc=nameListSer;//将传入的对象赋值给listSvc
        do {
            System.out.println("-------------------------------");
            System.out.println("--        团队调度界面         --");
            System.out.println("-------------------------------");
            System.out.print("1-添加团队 2-查看团队 3-删除团队 4-退出 请选择(1-4):");
            key=TSUtility.readMenuSelection();
            switch (key){
                case '1':
                    enterMainMenu();
                    break;
                case '2':
                    if(team.size()==0){
                        System.out.println("暂无团队");
                    }else{
                        System.out.println("-----------------------团队列表-----------------------");
                        for (Programmer[] team : team) {
                            for (int i=0;i<team.length;i++){
                                System.out.println( team[i]);
                            }
                            System.out.println("---------------------------------------------------");
                        }
                    }
                    break;
                case '3':
                    System.out.print("你要删除第几个团队:");
                    int n=TSUtility.readInt();
                    if (n<=team.size()){
                        System.out.print("确认是否删除(Y/N):");
                        char yn=TSUtility.readConfirmSelection();
                        if(yn=='Y'){
                            team.remove(n-1);//集合中团队索引从0开始
                        }
                    }else{
                        System.out.println("没有该团队,目前团队个数为"+team.size());
                    }
                    break;
                case '4':
                    System.out.print("确认是否退出(Y/N):");
                    char yn = TSUtility.readConfirmSelection();
                    if (yn == 'Y') {
                        flag = false;
                    }
                    break;
                default:
                    System.out.println("输入错误,请重新输入");
                    break;
            }
        }while (flag);
        return team;
    }

}

TSUtility输入控制类:

提供各种输入的限制,比如输入的操作编号只能是1-5,输入其它会弹出提示信息,该类中提供的均为静态方法

package com.team.view;

import java.util.Random;
import java.util.Scanner;

public class TSUtility {
    private static Scanner scanner = new Scanner(System.in);

	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') {
                System.out.print("选择错误,请重新输入:");
            } else break;
        }
        return c;
    }
    public static char readMenuSelectionPro() {
        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 void readReturn() {
        System.out.print("按回车键继续...");
        readKeyBoard(100, true);
    }

    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;
    }
    public static int readstock() {
        int n;
        for (; ; ) {
            String str = readKeyBoard(6, false);
            try {
                n = Integer.parseInt(str);
                break;
            } catch (NumberFormatException e) {
                System.out.print("数字输入错误,请重新输入:");
            }
        }
        return n;
    }
    public static Double readDouble() {
        Double n;
        for (; ; ) {
            String str = readKeyBoard(6, false);
            try {
                n = Double.parseDouble(str);
                break;
            } catch (NumberFormatException e) {
                System.out.print("数字输入错误,请重新输入:");
            }
        }
        return 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;
    }
    public static String readString(int limit, String defaultValue) {
        String str = readKeyBoard(limit, true);
        return str.equals("")? defaultValue : str;
    }

    public 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;
    }
    //进度条
    public static void loadSpecialEffects() throws InterruptedException {
        System.out.println("请稍等:");
        for (int i1 = 1; i1 <= 100; i1++) {
            System.out.print("加载中:" + i1 + "%");
            Thread.sleep(new Random().nextInt(25) + 1);
            if (i1 == 100) {
                Thread.sleep(50);
            }
            System.out.print("\r");
        }
    }
}

IndexView项目运行主界面类:

提供主界面显示及对应各功能模块的调用

package com.team.view;

import com.team.domain.Programmer;
import com.team.service.NameListService;
import com.team.service.ProjectService;
import com.team.service.TeamException;

import java.util.ArrayList;

public class IndexView {
    /**
     * 颜色特效
     */
    public static final String ANSI_RESET = "\u001B[0m";
    public static final String ANSI_GREEN = "\u001B[32m";
    public static final String ANSI_YELLOW = "\u001B[33m";
    public static final String ANSI_PURPLE = "\u001B[35m";
    public static final String ANSI_BLUE = "\u001B[34m";
    public static final String ANSI_CYAN = "\u001B[36m";

    private LoginView loginVi = new LoginView();
    private NameListService nameListSer = new NameListService();
    private TeamView teamVi = new TeamView();
    private ProjectService projectSer = new ProjectService();
    private ArrayList<Programmer[]> manyTeam=null;


    public  void menu() throws TeamException, InterruptedException {
        boolean loopFlag = true;
        char key = 0;
        System.out.println(ANSI_PURPLE);
        System.out.println("🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣");
        System.out.println("🔣                                  🔣");
        System.out.println("🔣    欢迎来到项目开发团队分配管理软件    🔣");
        System.out.println("🔣                                  🔣");
        System.out.println("🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣");
        System.out.println("🐕");
        System.out.println("🐕");
        System.out.println("🐕");
        System.out.println("🐕-----------<请您先进行登录>-------------🐕");
        TSUtility.readReturn();
        try {
            loginVi.login();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        do {
            System.out.println(ANSI_RESET + ANSI_CYAN);
            System.out.println("🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣");
            System.out.println("🔣                                  🔣");
            System.out.println("🔣              ~软件主菜单~          🔣");
            System.out.println("🔣                                  🔣");
            System.out.println("🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣🔣");
            System.out.println("🐻1. <用户信息修改>                *");
            System.out.println("🐘2. <开发人员管理>                *");
            System.out.println("🦁3. <开发团队调度管理>            *");
            System.out.println("🐻4. <开发项目管理>                *");
            System.out.println("🦊5. <退出软件>                    *");
            System.out.println("⬇请选择:  ");
            System.out.print(ANSI_RESET);
            key = TSUtility.readMenuSelectionPro();
            switch (key) {
                case '1':
                    try {
                        loginVi.update();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    break;
                case '2':
                    try {
                        nameListSer.showEmployee();
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    boolean loopFlagSec = true;
                    char keySec = 0;
                    do {
                        System.out.print(ANSI_RESET + ANSI_YELLOW);
                        System.out.println("🔣      ~开发人员管理主菜单~            🔣");
                        System.out.println("🐕1.     <开发人员的添加>           *");
                        System.out.println("🐖2.     <开发人员的查看>           *");
                        System.out.println("🐱3.     <开发人员的修改>           *");
                        System.out.println("🐂4.     <开发人员的删除>           *");
                        System.out.println("🐇5.     <退出当前菜单>             *");
                        System.out.println("⬇请选择:  ");
                        keySec=TSUtility.readMenuSelectionPro();
                        switch (keySec) {
                            case '1':
                                try {
                                    nameListSer.addEmployee();
                                } catch (InterruptedException e) {
                                    e.printStackTrace();
                                }
                                break;
                            case '2':
                                try {
                                    nameListSer.showEmployee();
                                } catch (InterruptedException e) {
                                    e.printStackTrace();
                                }
                                break;
                            case '3':
                                System.out.println("请输入需要修改的员工id:");
                                int i = TSUtility.readInt();
                                try {
                                    nameListSer.modifyEmployee(i);
                                } catch (InterruptedException e) {
                                    e.printStackTrace();
                                }
                                break;
                            case '4':
                                System.out.println("请输入需要删除的员工id:");
                                int j  = TSUtility.readInt();
                                nameListSer.delEmployee(j);
                                break;
                            case '5':
                                System.out.print("确认是否退出(Y/N):");
                                char yn = TSUtility.readConfirmSelection();
                                if (yn == 'Y') {
                                    loopFlagSec = false;
                                }
                                break;
                            default:
                                System.out.println("输入有误!请重新输入!");
                                break;
                        }
                    } while (loopFlagSec);
                    break;
                case '3':
                    System.out.println(ANSI_BLUE);
                    manyTeam = teamVi.getManyTeam(nameListSer);
                    break;
                case '4':
                    boolean loopFlagThr = true;
                    char keyThr = 0;
                    do {
                        System.out.print(ANSI_RESET + ANSI_GREEN);
                        System.out.println("🔣      ~开发项目管理主菜单~     🔣");
                        System.out.println("🐕1.     <项目的添加>           *");
                        System.out.println("🐖2.     <项目分配开发团队>      *");
                        System.out.println("🐱3.     <项目的查看>           *");
                        System.out.println("🐂4.     <项目的删除>           *");
                        System.out.println("🐇5.     <退出当前菜单>         *");
                        System.out.println("⬇请选择:  ");
                        System.out.print(ANSI_RESET + ANSI_YELLOW);
                        keyThr=TSUtility.readMenuSelectionPro();
                        switch (keyThr) {
                            case '1':
                                try {
                                    projectSer.addProject();
                                } catch (InterruptedException e) {
                                    e.printStackTrace();
                                }
                                break;
                            case '2':
                                try {
                                    for (Programmer[] pro : manyTeam) {
                                        projectSer.dealingPro(pro);
                                    }
                                }catch(NullPointerException e){
                                    System.out.println("暂无开发团队");
                                }
                                break;
                            case '3':
                                try {
                                    projectSer.showPro();
                                } catch (InterruptedException e) {
                                    e.printStackTrace();
                                }
                                break;
                            case '4':
                                System.out.println("请输入需要删除的项目id:");
                                int j  = TSUtility.readInt();
                                try {
                                    projectSer.delPro(j);
                                }catch(TeamException e){
                                    e.printStackTrace();
                                }
                                break;
                            case '5':
                                System.out.print("确认是否退出(Y/N):");
                                char yn = TSUtility.readConfirmSelection();
                                if (yn == 'Y') {
                                    loopFlagThr = false;
                                }
                                break;
                            default:
                                System.out.println("输入有误!请重新输入!");
                                break;
                        }
                    } while (loopFlagThr);
                    break;
                case '5':
                    System.out.print("确认是否退出(Y/N):");
                    char yn = TSUtility.readConfirmSelection();
                    if (yn == 'Y') {
                        loopFlag = false;
                    }
                    break;
                default:
                    break;
            }
        } while (loopFlag);
    }

    public static void main(String[] args) throws TeamException, InterruptedException {
        new IndexView().menu();
    }

}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值