歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android Tomcat 的應用之服務器部分

接著這裡(http://www.linuxidc.com/Linux/2012-03/55917.htm)寫,實現登錄的服務端部分。首先得弄個數據庫,然後建立一個表,存儲所有用戶的用戶名和密碼,當在客戶端發出查詢請求的時候會把用戶輸入的用戶名和密碼傳到服務器端,然後在數據庫中進行查詢,這裡我們的表就3個字段,一個ID,一個username和一個password。

然後就是編碼實現了,首先是寫一個類封裝一下數據庫中的用戶信息,如下:

  1. public class User {  
  2.     private int id;  
  3.   
  4.     private String username;  
  5.       
  6.     private String password;  
  7.   
  8.     public int getId() {  
  9.         return id;  
  10.     }  
  11.     public void setId(int id) {  
  12.         this.id = id;  
  13.     }  
  14.     public String getName() {  
  15.         return username;  
  16.     }  
  17.     public void setName(String name) {  
  18.         this.name = name;  
  19.     }  
  20.     public String getPassword() {  
  21.         return password;  
  22.     }  
  23.     public void setPassword(String password) {  
  24.         this.password = password;  
  25.     }  
  26.   
  27. }  

然後就是定義查詢的接口:

  1. public interface UserDao {  
  2.     // 登錄方法   
  3.     public User login(String username,String password);  
  4. }  

實現該接口:

  1. public class UserDaoImpl implements UserDao {  
  2.     public User login(String account, String password) {  
  3.         // 查詢SQL語句   
  4.         String querySql = " select id,username,password "+  
  5.                         " from userTable "+  
  6.                         " where username=? and password=? ";  
  7.         DBUtil util = new DBUtil();  
  8.         Connection conn = util.openConnection();  
  9.         try {  
  10.             PreparedStatement state = conn.prepareStatement(querySql);  
  11.             state.setString(1, username);  
  12.             state.setString(2, password);  
  13.   
  14.             ResultSet result = state.executeQuery();  
  15.             if (result.next()) {  
  16.   
  17.                 int id = result.getInt(1);  
  18.                 String name = result.getString(4);  
  19.                   
  20.                 User user = new User();  
  21.                   
  22.                 user.setId(id);  
  23.                 user.setName(username);  
  24.                 user.setPassword(password);  
  25.   
  26.                 return user;  
  27.             }  
  28.         } catch (SQLException e) {  
  29.             e.printStackTrace();  
  30.         } finally {  
  31.             util.closeConn(conn);  
  32.         }  
  33.         return null;  
  34.     }  
  35.   
  36. }  
Copyright © Linux教程網 All Rights Reserved