亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java如何實現注冊登錄系統

發布時間:2022-04-25 13:56:41 來源:億速云 閱讀:529 作者:iii 欄目:開發技術

本篇內容介紹了“java如何實現注冊登錄系統”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

1、創建菜單,注冊,登錄,退出

2、注冊模塊:

a) 通過鍵盤輸入用戶名,密碼
b) 保存用戶名密碼到user.txt文件(包含用戶名和密碼)
c) 注冊成功

3、登錄模塊

a) 通過鍵盤輸入用戶名和密碼
b) 判斷(超過三次提示過多錯誤,需要休眠30秒)
c) 登陸成功

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Properties;
import java.util.Scanner;

class TestRegex{
    public boolean isUser(String user) {
        String regex="[1-9][0-9]{4,9}";
        boolean b=user.matches(regex);
        return b;
    }
    public boolean isMiMa(String mm) {
        String regex="\\w+(\\.*\\w)";
        boolean b=mm.matches(regex);
        return b;
    }
}
public class MySQLregisterTest{
    //1.    注冊登錄系統
    //1.    創建菜單,注冊,登錄,退出
    public static void MySQLmenu() {
        System.out.println("***************************");
        System.out.println("*****MySQL注冊登錄系統*****");
        System.out.println("**1.注冊");
        System.out.println("**2.登錄");
        System.out.println("**3.退出");
    }
    //2.    注冊模塊:
    //a)    通過鍵盤輸入用戶名,密碼
    //b)    保存用戶名密碼到user.txt文件(包含用戶名和密碼)
    //c)    注冊成功
    public static void MySQLregister() throws IOException {
        TestRegex tr=new TestRegex();
        File f=new File("user.txt");

        Scanner sc=new Scanner(System.in);
        System.out.println("歡迎來到注冊界面!");
        System.out.println("請輸入用戶名!");
        String s=sc.next();
        boolean bu=tr.isUser(s);
        FileInputStream fis=new FileInputStream("user.txt");
        Properties pro=new Properties();
        pro.load(fis);
        String user=pro.getProperty("user");
        String pass=pro.getProperty("pass");
        if(bu==false&&user.equals(s)) {
            System.out.println("賬號注冊失敗");
        }else {
            FileOutputStream fos=new FileOutputStream(f,true);
            byte[] bye=new byte[512];
            int len=0;
            fos.write(("user="+s+"\r\n").getBytes());
            fos.flush();
            fos.close();
            fis.close();
            System.out.println("注冊成功");
        }
        System.out.println("請輸入密碼!");
        String st=sc.next();
        boolean bm=tr.isMiMa(st);
        if(bm==false&&pass.equals(st)) {
            System.out.println("密碼注冊失敗");
        }else {
            FileOutputStream fos=new FileOutputStream(f,true);
            byte[] bye=new byte[512];
            int len=0;
            fos.write(("pass="+st+"\r\n").getBytes());
            fos.flush();
            fos.close();
            fis.close();
            System.out.println("賬號注冊成功");
        }
    }
    //3.     登錄模塊
    //a)    通過鍵盤輸入用戶名和密碼
    
    public static boolean Login() throws IOException{
        boolean flag=false;
        Scanner sc=new Scanner(System.in);
        System.out.println("請輸入用戶名:");
        String s=sc.next();
        FileInputStream fis=new FileInputStream("user.txt");
        Properties pro=new Properties();
        pro.load(fis);
        String user=pro.getProperty("user");
        String pass=pro.getProperty("pass");
        if(s.equals(user)) {
            System.out.println("請輸入密碼:");
        }
        String ms=sc.next();
        if(ms.equals(pass)) {
            System.out.println("登錄成功");
            flag=true;
        }
        return flag;
    }
    //b)    判斷(超過三次提示過多錯誤,需要休眠30秒)
    //c)    登陸成功
    public static void Oder() {
        int n = 1;
        abc: while (n <4) {
            try {
                boolean flag = Login();
                if (flag == false) {
                    n++;
                } else {
                    System.out.println("賬號或密碼錯誤,請確認賬號密碼");
                    n = 4;
                    break abc;
                }
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }

    public static void main(String[] args) throws IOException, Exception {
        boolean flag=true;
        while(flag) {
            MySQLmenu();
            Scanner sc=new Scanner(System.in);
            System.out.println("請輸入選擇項:");
            int n=sc.nextInt();
            switch(n) {
            case 1:
                MySQLregister();
                break;
            case 2:
                Oder();
                System.out.println("輸入次數達到上限,休眠30秒");
                Thread.sleep(30000);
                break;
            case 3:
                System.out.println("已退出系統");
                flag=false;
                break;
            default:
                System.out.println("輸入異常!請重新輸入");
            }
        }
    }
}

“java如何實現注冊登錄系統”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

沙雅县| 廉江市| 兴海县| 伽师县| 图们市| 霍山县| 交口县| 察哈| 兴文县| 东安县| 沂源县| 建阳市| 澳门| 常州市| 新闻| 靖宇县| 奎屯市| 平阳县| 麻栗坡县| 永济市| 隆回县| 历史| 崇礼县| 祁东县| 临颍县| 鄢陵县| 民县| 岳西县| 阳谷县| 海安县| 忻州市| 扎兰屯市| 商都县| 高陵县| 西林县| 安陆市| 海门市| 元朗区| 周宁县| 西宁市| 嵊泗县|