加入收藏 | 设为首页 | 会员中心 | 我要投稿 聊城站长网 (https://www.0635zz.com/)- 智能语音交互、行业智能、AI应用、云计算、5G!
当前位置: 首页 > 教程 > 正文

JSP保存用户上一次登录时间详细代码

发布时间:2023-07-18 14:19:55 所属栏目:教程 来源:
导读:代码是以Access库为例,日期对象使用的java.sql.Date()类型,因为据测试java.util.Date类型是不能添加到DateTime类型的字段中的:

出处:http://www.tot.name

import java.sql.*;

import java.text.*;
代码是以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();
 
}
 
}
 
 

(编辑:聊城站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!