JSP如何儲存使用者上次登入時間
程式碼是以Access庫為例,日期物件使用的java.sql.Date()型別,因為據測試java.util.Date型別是不能新增到DateTime型別的欄位中的:作者:淘特網
出處:http://www.tot.name
import java.sql.*;
import java.text.*;
/**
* 程式碼
*/
public class MSAccessDB {
public static SimpleDateFormat sd=new SimpleDateFormat("MMM dd yyyy");
private PreparedStatement pStmt=null;
private Statement stmt=null;
private Connection msConn=null;
public MSAccessDB() {
try {
jbInit();
int userID=1;
listLoginData();//列出使用者資訊,上次登入時間...
updateUserLogin(userID);//更新使用者表中的資訊,登入時間...
listLoginData();//再次顯示使用者資訊,以便對比
}
catch(Exception e) {
e.printStackTrace();
}
}
private void listLoginData() throws SQLException {
ResultSet rs=stmt.executeQuery("select * from user_table");
while (rs.next()) {
System.out.print(rs.getInt("user_id")+"\t");
System.out.print(rs.getString("nick_name")+"\t");
System.out.print(rs.getString("last_name")+"\t");
System.out.print(rs.getString("first_name")+"\t");
System.out.print(sd.format(rs.getDate("last_access_date"))+"\n");
}
}
private void updateUserLogin(int userID) throws SQLException {
java.sql.Date today=new java.sql.Date(System.currentTimeMillis());
pStmt.setDate(1,today);
pStmt.setInt(2,userID);
pStmt.executeUpdate();
}
private void jbInit() throws Exception {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
msConn=DriverManager.getConnection("jdbc:odbc:test_db;;;");
String psStr="update user_table set last_access_date=? where user_id=?";
pStmt=msConn.prepareStatement(psStr);
stmt=msConn.createStatement();
}
public static void main(String[] args) {
MSAccessDB mdb=new MSAccessDB();
}
}
出處:http://www.tot.name
import java.sql.*;
import java.text.*;
/**
* 程式碼
*/
public class MSAccessDB {
public static SimpleDateFormat sd=new SimpleDateFormat("MMM dd yyyy");
private PreparedStatement pStmt=null;
private Statement stmt=null;
private Connection msConn=null;
public MSAccessDB() {
try {
jbInit();
int userID=1;
listLoginData();//列出使用者資訊,上次登入時間...
updateUserLogin(userID);//更新使用者表中的資訊,登入時間...
listLoginData();//再次顯示使用者資訊,以便對比
}
catch(Exception e) {
e.printStackTrace();
}
}
private void listLoginData() throws SQLException {
ResultSet rs=stmt.executeQuery("select * from user_table");
while (rs.next()) {
System.out.print(rs.getInt("user_id")+"\t");
System.out.print(rs.getString("nick_name")+"\t");
System.out.print(rs.getString("last_name")+"\t");
System.out.print(rs.getString("first_name")+"\t");
System.out.print(sd.format(rs.getDate("last_access_date"))+"\n");
}
}
private void updateUserLogin(int userID) throws SQLException {
java.sql.Date today=new java.sql.Date(System.currentTimeMillis());
pStmt.setDate(1,today);
pStmt.setInt(2,userID);
pStmt.executeUpdate();
}
private void jbInit() throws Exception {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
msConn=DriverManager.getConnection("jdbc:odbc:test_db;;;");
String psStr="update user_table set last_access_date=? where user_id=?";
pStmt=msConn.prepareStatement(psStr);
stmt=msConn.createStatement();
}
public static void main(String[] args) {
MSAccessDB mdb=new MSAccessDB();
}
}
相關文章
- redis儲存使用者登入資訊Redis
- 2017060312C sqlplus顯示使用者上次登入時間SQL
- 如何在 Ubuntu 中再次登入時還原上次執行的應用Ubuntu
- [20181006]12c sqlplus顯示使用者上次登入時間.txtSQL
- Win10系統設定登入時顯示上次登入資訊的方法Win10
- 如何延長儲存伺服器上資料的儲存時間?伺服器
- Android WebView儲存Cookie登入AndroidWebViewCookie
- localStorage設定儲存時間
- 計算本年使用者最大未登入時間段
- 如何限制使用者在某個時間段內禁止登入資料庫資料庫
- cookie儲存使用者登入名和密碼程式碼例項Cookie密碼
- Python 儲存字串時是如何節省空間的?Python字串
- 根據上次輸入操作的時間設定離開狀態
- win10系統修改登錄檔後儲存不了提示寫入登錄檔時出錯如何解決Win10
- SecureCRT for Mac 無法儲存登入密碼SecurecrtMac密碼
- Paramiko SSH登入裝置儲存配置
- 定期刪除檔案,限制linux使用者登入時間Linux
- wps自動儲存時間設定在哪裡 WPS如何設定自動儲存
- Azure Blob儲存更改快取時間快取
- Activity Monitor log儲存時間調整
- jQuery實現的利用cookie儲存使用者登入資訊程式碼例項jQueryCookie
- 解決MongoDB儲存時間時差的問題MongoDB
- jsp中呼叫儲存過程JS儲存過程
- 使用MongoDB儲存時間序列資料 - DACMongoDB
- MySQL 中儲存時間的最佳實踐MySql
- 日期和時間的儲存與處理
- 【MySQL】時間型別儲存格式選擇MySql型別
- 如何構建通用儲存中間層
- PostgreSQL儲存智慧-空間聚集儲存SQL
- 如何遠端寫入prometheus儲存Prometheus
- 限制使用者在某個時間段內禁止登入資料庫資料庫
- 981-基於時間的鍵值儲存
- 雲端儲存是未來,只是時間問題
- 981. 基於時間的鍵值儲存
- Jsp中呼叫Oracle儲存過程JSOracle儲存過程
- 在sqlnet.ora中設定引數限制使用者登入時間SQL
- 使用者登入時的環境載入順序
- 簡單仿QQ登入介面,儲存資訊到sd卡SD卡