欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

java实现航空用户管理系统

程序员文章站 2022-06-26 09:35:07
本文实例为大家分享了java实现航空用户管理系统的具体代码,供大家参考,具体内容如下题目内容:某航空公司在其航班到达的不同的国家的不同地方设有不同的办事处,这个项目要求开发一个自动化软件系统,该系统将...

本文实例为大家分享了java实现航空用户管理系统的具体代码,供大家参考,具体内容如下

题目内容:

某航空公司在其航班到达的不同的国家的不同地方设有不同的办事处,这个项目要求开发一个自动化软件系统,该系统将提供给这些办事处的管理者(role=1)和普通用户(role=0)用于管理航班信息。根据以上描述,要求实现系统的用户模块和办事处模块,包含以下功能(注:系统存在一个默认管理员admin/admin123):

用户模块:

1. 用户添加
2. 密码修改
3. 个人信息查看
4. 账号状态修改(禁用0、启用1)
5. 用户登录(被禁用账号无法登录并提示友好的消息)
6. 修改用户角色(设置取消管理员)
7. 用户列表
8. 查询指定办事处的员工
9. 删除用户

办事处模块:

1. 办事处添加
2. 办事处列表

注意:管理员具备以上所有功能,普通用户只有密码修改和个人信息查看功能

参考类信息如下:

用户类(user):

id,账号(username),密码(passord),年龄(age),角色(role),邮箱(email),办事处id(officeid),账户状态(status)

办事处类(office):

id,办公室名(officename)

要求使用技术参数如下:

1.分支与循环
2.数组或arraylist
3.方法
4.构造器
5.setter/getter
6.抽象类或接口
7.多态
8.scanner类

分析:

1.题目中管理员与用户的功能实现不同,普通用户只有登录系统、密码修改与个人信息查看功能,而管理员实现的功能更多,包含了普通用户的所有功能,那么我可以在登录时就进行分辨,不同用户所获得的功能菜单界面不同。

2.管理员可以设置状态,如果状态为禁用则无法登录。(实现方法可以放在用户登录中)

3.默认管理员admin/admin123(可以设置一个初始化块,初始化块又称游离块,是一个没有名称的代码块,执行时间一般在创建对象执行构造器前先执行,并且执行次数取决于对象的创建次数,作用于将多个构造器中的重复代码提取到一起统一执行. )

4.个人信息查看只能查看个人的信息,没法看到其他用户的信息。(设置一个静态变量,登陆时的用户名存储在里面,个人信息查看通过该静态变量在信息存储中查找)

5.接口(这次的接口没有写好,可以将usermange中的方法都放进接口中,在usermange类中实现,officemange类中也一样) 

内容实现:

user类:

package com.softeem.j2106.work;
 
/**
 * @author admin
 * 2021/7/17
 */
public class user {
    private int id;
    private string username;
    private string password;
    private int age;
    private boolean role;
    private string email;
    private int officeid;
    private boolean status;
 
    public user() {
 
    }
 
    public user(int id, string username, string password, int age, boolean role, string email, int officeid, boolean status) {
        this.id = id;
        this.username = username;
        this.password = password;
        this.age = age;
        this.role = role;
        this.email = email;
        this.officeid = officeid;
        this.status = status;
    }
 
    public int getid() {
        return id;
    }
 
    public void setid(int id) {
        this.id = id;
    }
 
    public string getusername() {
        return username;
    }
 
    public void setusername(string username) {
        this.username = username;
    }
 
    public string getpassword() {
        return password;
    }
 
    public void setpassword(string password) {
        this.password = password;
    }
 
    public int getage() {
        return age;
    }
 
    public void setage(int age) {
        this.age = age;
    }
 
 
 
    public string getemail() {
        return email;
    }
 
    public void setemail(string email) {
        this.email = email;
    }
 
    public int getofficeid() {
        return officeid;
    }
 
    public void setofficeid(int officeid) {
        this.officeid = officeid;
    }
 
    public boolean isrole() {
        return role;
    }
 
    public void setrole(boolean role) {
        this.role = role;
    }
 
    public boolean isstatus() {
        return status;
    }
 
    public void setstatus(boolean status) {
        this.status = status;
    }
 
    @override
    public string tostring() {
        return "user{" +
                "id=" + id +
                ", username='" + username + '\'' +
                ", password='" + password + '\'' +
                ", age=" + age +
                ", role=" + role +
                ", email='" + email + '\'' +
                ", officeid=" + officeid +
                ", status=" + status +
                '}';
    }
}

office类:

package com.softeem.j2106.work;
 
/**
 * @author admin
 * 2021/7/17
 */
public class office {
    private int officeid;
    private string officename;
 
    public office() {
    }
 
    public office(int officeid, string officename) {
        this.officeid = officeid;
        this.officename = officename;
    }
 
    public int getofficeid() {
        return officeid;
    }
 
    public void setofficeid(int officeid) {
        this.officeid = officeid;
    }
 
    public string getofficename() {
        return officename;
    }
 
    public void setofficename(string officename) {
        this.officename = officename;
    }
 
    @override
    public string tostring() {
        return "office{" +
                "officeid=" + officeid +
                ", officename='" + officename + '\'' +
                '}';
    }
}

inter接口:

package com.softeem.j2106.work;
 
public interface inter {
 
    public void showall();
}

usermange:

package com.softeem.j2106.work;
 
import java.util.objects;
 
/**
 * @author admin
 * 2021/7/17
 */
public class usermanage implements inter{
    private user[] users = new user[10];
    private int index=1;
 
    {
        users[0] = new user(0,"admin","admin123",20,true,"@163.com",0,true);
    }
 
    /**
     * 用户登录
     */
    public int sign(string username, string password) {
        for (int i = 0; i < users.length; i++) {
            user s = users[i];
                if ((objects.nonnull(s))&& s.getusername().equals(username) && s.getpassword().equals(password)) {
                    if ((s.isrole())&& s.isstatus()) {
                        return 1;
                    } else if ((!s.isrole()) && s.isstatus()) {
                        return 0;
                    } else if (!s.isstatus()){
                        return -2;
                    }
                }
        }
        return -1;
    }
 
 
    /**
     * 用户添加
     */
    public boolean add(user u) {
        if (index >= users.length) {
            return false;
        }
        users[index++] = u;
        return true;
    }
 
    /**
     * 密码修改
     */
    public boolean updatepassword(string password) {
        for (int i = 0; i < users.length; i++) {
            user user = this.users[i];
            if ((objects.nonnull(user))&&user.getpassword() != null) {
                users[i].setpassword(password);
                return true;
            }
        }
        return false;
    }
 
 
    /**
     * 个人信息查看
     */
    public user searchbyid(string username) {
        user user = new user();
        for (user user1 : users) {
            if ((objects.nonnull(user))&&user1.getusername().equals(username)) {
                user = user1;
                break;
            }
        }
        return user;
    }
 
    /**
     * 账号状态修改
     */
    public boolean changestatus(string username, boolean status) {
        user user = searchbyid(username);
        if (user != null) {
            user.setstatus(status);
            return true;
        }
        return false;
    }
 
    /**
     * 修改用户角色
     */
    public boolean changeadmin(string username, boolean role) {
        user user = searchbyid(username);
        if (user != null) {
            user.setrole(role);
            return true;
        }
        return false;
    }
 
 
    /**
     * 查询指定办事处的员工
     */
    public boolean searchofficeid(int officeid) {
        for (user user : users) {
            if ((objects.nonnull(user))&&officeid == user.getofficeid()) {
                system.out.println(user);
                return true;
            }
        }
        return false;
    }
 
    /**
     * 删除用户
     */
    public boolean delete(int id) {
        for (int i = 0; i < users.length; i++) {
            user s = users[i];
            if (objects.nonnull(s) && objects.equals(s.getid(), id)) {
                //将当前元素置为空
//                stus[i] = null;
                //后续的元素前移 覆盖空白位置(避免碎片化)
                system.arraycopy(users, i + 1, users, i, users.length - index - 1);
                index--;
                return true;
            }
        }
        return false;
    }
 
    /**
     * 用户列表
     */
    @override
    public void showall() {
        for (user user : users) {
            if (user != null) {
                system.out.println(user);
            }
        }
    }
}

officemange类:

package com.softeem.j2106.work;
 
/**
 * @author admin
 * 2021/7/17
 */
public class officemange implements inter {
    private static office[] off = new office[10];
    private int index;
 
    /**
     * 办事处添加
     */
    public boolean officeadd(office o) {
        if (index >= off.length) {
            return false;
        }
        off[index++] = o;
        return true;
    }
    /**办事处列表*/
    @override
    public void showall() {
        for (office office : off) {
            if (office != null) {
                system.out.println(office);
            }
        }
    }
}

tset类:(实现)

package com.softeem.j2106.work;
 
import java.util.scanner;
 
/**
 * @author admin
 * 2021/7/17
 */
public class test {
    static string loginname;
    static usermanage a = new usermanage();
    static officemange b = new officemange();
    static scanner sc = new scanner(system.in);
 
 
    public static void start() {
        msg("==============softeem用户登录==============");
        msg("=========================================");
        msg("请输入账号:");
        string username = sc.next();
        loginname = username;
        msg("请输入密码:");
        string password = sc.next();
        if (a.sign(username, password) == 1) {
            sign1();
        } else if (a.sign(username, password) == 0) {
            sign2();
        } else if (a.sign(username, password) == -1) {
            msg("登录失败!");
            start();
        } else if (a.sign(username, password) == -2) {
            msg("账号被禁用!");
            start();
        }
    }
 
 
    public static void sign1() {
        msg("=========softeem管理员管理系统=========");
        msg("[1] 用户添加");
        msg("[2] 密码修改");
        msg("[3] 个人信息查看");
        msg("[4] 账号状态修改");
        msg("[5] 修改用户角色");
        msg("[6] 用户列表");
        msg("[7] 查询指定办事处的员工");
        msg("[8] 删除员工");
        msg("[9] 用户登录");
        msg("[10] 办事处添加");
        msg("[11] 办事处列表");
        msg("[0] 退出系统");
        msg("====================================");
        scanner sc = new scanner(system.in);
        int i = sc.nextint();
        switch (i) {
            case 1:
                adduser();
                break;
            case 2:
                pwd();
                sign1();
                break;
            case 3:
                selectbyid();
                sign1();
                break;
            case 4:
                updatestatus();
                break;
            case 5:
                updaterole();
                break;
            case 6:
                listuser();
                break;
            case 7:
                search();
                break;
            case 8:
                deluser();
                break;
            case 9:
                start();
                break;
            case 10:
                addoffice();
                break;
            case 11:
                listoffice();
                break;
            case 0:
                msg("谢谢使用,再见!");
                //系统退出(关闭jvm)
                system.exit(0);
                break;
            default:
                msg("指令错误,请重新输入");
                sign1();
                break;
        }
    }
 
    public static void sign2() {
        msg("==========softeem用户管理系统==========");
        msg("[1] 个人查看");
        msg("[2] 密码修改");
        msg("[0] 退出系统");
        msg("====================================");
        scanner sc = new scanner(system.in);
        int i = sc.nextint();
        switch (i) {
            case 1:
                selectbyid();
                sign2();
                break;
            case 2:
                pwd();
                sign2();
                break;
            case 0:
                msg("谢谢使用,再见!");
                //系统退出(关闭jvm)
                system.exit(0);
                break;
            default:
                msg("指令错误,请重新输入");
                start();
                break;
        }
    }
 
 
    public static void selectbyid() {
        user u = a.searchbyid(loginname);
        if (u == null) {
            msg("您输入的用户id不存在");
        }
        system.out.println(u);
    }
 
 
    public static void pwd() {
        msg("请输入新密码:");
        string password = sc.next();
        if (a.updatepassword(password)) {
            msg("修改成功");
        } else {
            msg("修改失败");
        }
    }
 
 
    private static void adduser() {
        msg("请输入id:");
        int id = sc.nextint();
        msg("请输入用户名:");
        string name = sc.next();
        msg("请输入密码:");
        string password = sc.next();
        msg("请输入年龄:");
        int age = sc.nextint();
        msg("设置为管理员【1】是: 【0】否");
        int i = sc.nextint();
        boolean role = true;
        if (i == 1){
            role = true;
        }else if (i == 0){
            role = false;
        }else {
            msg("请输入正确的指令");
        }
        msg("请输入邮箱:");
        string emial = sc.next();
        msg("请输入办事处id:");
        int officeid = sc.nextint();
        msg("设置状态【1】启用: 【0】禁用");
        int j = sc.nextint();
        boolean status = true;
        if (j == 1){
            status = true;
        }else if (j == 0){
            status = false;
        }else {
            msg("请输入正确的指令");
        }
        user u = new user(id, name, password, age, role, emial, officeid, status);
        if (a.add(u)) {
            msg("添加成功!!");
        } else {
            msg("容量不足!!");
        }
        //返回主菜单
        sign1();
    }
 
    /**办事处添加*/
    public static void addoffice(){
        msg("请输入officeid:");
        int id = sc.nextint();
        msg("请输入办事处名:");
        string name = sc.next();
        office o = new office(id,name);
       if (b.officeadd(o)){
           msg("添加成功!!");
       } else {
           msg("容量不足!!");
       }
       sign1();
    }
    public static void updatestatus() {
        msg("请输入修改用户名:");
        string username = sc.next();
        msg("请修改用户的账户状态(禁用0/启用1):");
        int j = sc.nextint();
        boolean status = true;
        if (j == 1){
            status = true;
        }else if (j == 0){
            status = false;
        }else {
            msg("请输入正确的指令");
        }
        if (a.changestatus(username, status)) {
            msg("修改成功");
        } else {
            msg("修改失败");
        }
        sign1();
    }
/**修改用户的角色信息*/
    public static void updaterole() {
        msg("请输入修改用户名:");
        string username = sc.next();
        msg("请修改用户的角色信息(禁用0/启用1):");
        int i = sc.nextint();
        boolean role = true;
        if (i == 1){
            role = true;
        }else if (i == 0){
            role = false;
        }else {
            msg("请输入正确的指令");
        }
        if (a.changeadmin(username, role)) {
            msg("修改成功");
        } else {
            msg("修改失败");
        }
        sign1();
    }
 
    /**用户删除*/
    public static void deluser() {
        msg("请输入id:");
        int id = sc.nextint();
        if (a.delete(id)) {
            msg("删除成功!!");
        } else {
            msg("用户不存在!!");
        }
        //返回上一级
        sign1();
    }
 
    /**用户列表*/
    public static void listuser() {
        a.showall();
        //返回上一级
        sign1();
    }
 
    /**办事处列表*/
    public static void listoffice(){
        b.showall();
        sign1();
    }
 
    private static void search() {
        msg("请输入id:");
        int id = sc.nextint();
        if (a.searchofficeid(id)){
 
        }else {
            msg("未知查询");
        }
 
        sign1();
    }
 
    public static void msg(string msg) {
        system.out.println(msg);
    }
 
    public static void main(string[] args) {
        start();
    }
}

用户登录:

java实现航空用户管理系统

管理员登录:

java实现航空用户管理系统

用户登录:

java实现航空用户管理系统

写的不是很好,代码重复较多,希望各位朋友可以指点

基本实现练习要求,有兴趣的朋友可以自行尝试一下

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。