真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

java中ATM與數(shù)據(jù)庫(kù)Mysql的連接

  1. import java.sql.*;  

    創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供膠州網(wǎng)站建設(shè)、膠州做網(wǎng)站、膠州網(wǎng)站設(shè)計(jì)、膠州網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)與制作、膠州企業(yè)網(wǎng)站模板建站服務(wù),10年膠州做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。

  2. import java.util.*;  

  3. public class ATM1 {  

  4.     String code;  

  5.     int pass;  

  6.     double money;  

  7.     int i=1;  

  8.     //檢查登錄  

  9.     public void checkLogin(){  

  10.         int i=1;  

  11.         while(i<=3){  

  12.             System.out.print("請(qǐng)輸入您的卡號(hào):");  

  13.             Scanner sc=new Scanner(System.in);  

  14.             String code_=sc.nextLine();  

  15.             System.out.print("請(qǐng)輸入您的密碼:");  

  16.             int pass_=sc.nextInt();  

  17.             try{  

  18.                 //加載驅(qū)動(dòng)  

  19.                 Class.forName("com.MySQL.jdbc.Driver");  

  20.                 //建立連接  

  21.                 java.sql.Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/atmdb","root","root");     

  22.                 //創(chuàng)建sql傳送對(duì)象  

  23.                 Statement stmt = conn.createStatement();  

  24.                 //將sql語(yǔ)句通過(guò)sql傳送對(duì)象傳送到數(shù)據(jù)庫(kù)并執(zhí)行,返還結(jié)果集  

  25.                 String sql = "select * from account where code='"+code_+"'and pass="+pass_;  

  26.                 ResultSet rs = stmt.executeQuery(sql);    

  27.                 //當(dāng)賬號(hào)、密碼與sql中的賬號(hào)與密碼相對(duì)應(yīng)的時(shí)候  

  28.                 //把sql中的相關(guān)數(shù)據(jù)傳送到目前變量以便進(jìn)行數(shù)據(jù)操作  

  29.                 if(rs.next()){  

  30.                     code = rs.getString(1);  

  31.                     pass = rs.getInt(2);  

  32.                     money = rs.getDouble(3);  

  33.                     loadSys();  

  34.                 }  

  35.                 rs.close();  

  36.                 stmt.close();  

  37.                 conn.close();  

  38.             }  

  39.             //捕獲異常  

  40.             catch (Exception e){  

  41.                 System.out.println(e);  

  42.             }  

  43.             //出現(xiàn)三次錯(cuò)誤之后提示  

  44.             i++;  

  45.             if( i == 3){  

  46.             System.out.print("您已經(jīng)輸錯(cuò)三次密碼,該卡已經(jīng)被鎖,請(qǐng)及時(shí)到相關(guān)網(wǎng)點(diǎn)咨詢!");  

  47.             }  

  48.         }  

  49.     }  

  50.     //保存數(shù)據(jù)  

  51.     //注意;下面的關(guān)鍵字(    "pass、code、money")要與數(shù)據(jù)庫(kù)中的名字一樣,避免出現(xiàn)錯(cuò)誤  

  52.     public void saveDb(){  

  53.         try{  

  54.             Class.forName("com.mysql.jdbc.Driver");  

  55.             java.sql.Connection conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/atmdb","root","root");     

  56.             Statement stmt = conn.createStatement();  

  57.             String sql="update account set pass ="+pass+" where code='"+code+"'";    

  58.             //dode為String型,所以要用‘’括起來(lái)  

  59.             String sql1="update account set money="+money+" where code='"+code+"'";  

  60.             stmt.executeUpdate(sql);    //update操作進(jìn)行數(shù)據(jù)更新  

  61.             stmt.executeUpdate(sql1);  

  62.             stmt.close();  

  63.             conn.close();  

  64.         }     

  65.         catch (Exception e){  

  66.                 System.out.println(e);  

  67.             }  

  68.           

  69.     }  

  70.     //歡迎界面  

  71.     public static void welcome(){  

  72.         System.out.println("!*****************************************!");  

  73.         System.out.println("!*************歡迎使用華夏銀行*************!");  

  74.         System.out.println("!*****************************************!");  

  75.     }  

  76.     //系統(tǒng)主界面  

  77.     public void loadSys(){  

  78.         System.out.println(".------------------------------------.");  

  79.         System.out.println("1 查詢余額                      存款 2");  

  80.         System.out.println("3 取款                      修改密碼 4");  

  81.         System.out.println("5 退出                                ");  

  82.         System.out.println(".------------------------------------.");  

  83.         System.out.print("請(qǐng)輸入相應(yīng)的功能選項(xiàng)數(shù)字:");  

  84.         Scanner sz=new Scanner(System.in);  

  85.         int num=sz.nextInt();         

  86.         switch(num){  

  87.             case 1:     

  88.                 chaxun();  

  89.                 break;  

  90.             case 2:     

  91.                cunkuan();  

  92.                break;  

  93.             case 3:     

  94.                qukuan();  

  95.                break;  

  96.             case 4:     

  97.                xiugai();  

  98.                break;  

  99.             case 5:     

  100.                quit();  

  101.                break;  

  102.             default:  

  103.                System.out.println("您輸入的數(shù)字有誤!");  

  104.                loadSys();  

  105.         }  

  106.     }  

  107.     //查詢余額  

  108.     public void chaxun(){  

  109.         System.out.println("您卡上的余額為:" +money);  

  110.         loadSys();  

  111.     }  

  112.     //存款  

  113.     public void cunkuan(){  

  114.         System.out.print("請(qǐng)輸入存款金額:");  

  115.         Scanner ck=new Scanner(System.in);  

  116.         double money1=ck.nextDouble();  

  117.         money=money+money1;  

  118.         saveDb();  

  119.         System.out.println("您卡上的余額為:" +money);  

  120.         System.out.println("請(qǐng)收好您的卡!");  

  121.         loadSys();  

  122.     }  

  123.     //取款  

  124.     public void qukuan(){  

  125.         System.out.print("請(qǐng)輸入取款金額:");  

  126.         Scanner qk=new Scanner(System.in);  

  127.         double money2=qk.nextDouble();  

  128.         if(money2>money){  

  129.             System.out.println("您的余額不足!");    

  130.             qukuan();  

  131.         }else{  

  132.             money=money-money2;  

  133.             saveDb();  

  134.             System.out.println("您卡上的余額為:" +money);  

  135.             System.out.println("請(qǐng)收好您的現(xiàn)金!");   

  136.             loadSys();  

  137.         }  

  138.     }  

  139.     //修改密碼  

  140.     public void xiugai(){  

  141.         int cs = 0;  

  142.         System.out.print("請(qǐng)輸入原密碼:");   

  143.         Scanner mm=new Scanner(System.in);  

  144.         int pass1=mm.nextInt();  

  145.         System.out.print("請(qǐng)輸入新密碼:");   

  146.         int pass2=mm.nextInt();  

  147.         System.out.print("請(qǐng)?jiān)俅屋斎胄旅艽a:");   

  148.         int pass3=mm.nextInt();  

  149.         if(pass==pass1&& pass2==pass3){  

  150.             System.out.println("修改密碼成功!");   

  151.             pass=pass2;  

  152.             saveDb();  

  153.             loadSys();  

  154.         }else{  

  155.             if(cs<2){  

  156.                System.out.print("您輸入的密碼有誤!");   

  157.                cs++;  

  158.                xiugai();  

  159.             }else{  

  160.                quit();  

  161.             }  

  162.         }  

  163.     }  

  164.     //退出  

  165.     public void quit(){  

  166.         System.exit(1);       

  167.     }  

  168.     //主函數(shù)  

  169.     public static void main(String args[]){  

  170.         /*try{ 

  171.             Class.forName("com.mysql.jdbc.Driver"); 

  172.             java.sql.Connection conn = DriverManager.getConnection( "jdbc:mysql://localhost:3306/atmdb","root","root"); 

  173.             Statement stmt = conn.createStatement(); 

  174.             String sql = "select * from account"; 

  175.             ResultSet rs = stmt.executeQuery(sql); 

  176.             while (rs.next()){ 

  177.                 String code = rs.getString(1); 

  178.                 int pass = rs.getInt(2); 

  179.                 double money = rs.getDouble(3); 

  180.                 System.out.println(code+"|"+pass+"|"+money); 

  181.             } 

  182.             rs.close(); 

  183.             stmt.close(); 

  184.             conn.close(); 

  185.         } 

  186.         catch(Exception e){ 

  187.         System.out.println(e); 

  188.         }*/  

  189.         ATM1 atm = new ATM1();  

  190.         atm.welcome();  

  191.         atm.checkLogin();  

  192.         }     

  193. }  


本文標(biāo)題:java中ATM與數(shù)據(jù)庫(kù)Mysql的連接
鏈接地址:http://weahome.cn/article/pgsphj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部