J如何保存用户上次登录时间_JSP技巧_黑客防线网安服务器维护基地--Powered by WWW.RONGSEN.COM.CN

J如何保存用户上次登录时间

作者:黑客防线网安JSP教程基地 来源:黑客防线网安JSP教程基地 浏览次数:0

本篇关键词:登录时间用户保存
黑客防线网安网讯:  代码是以Access库为例,日期对象使用的java.sql.Date()类型,因为据测试java.util.Date类型是不能添加到DateTime类型的字段中的:作者:淘特网   出处:http://www.tot.name   impor...

  代码是以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")+" ");
        System.out.print(rs.getString("nick_name")+" ");
        System.out.print(rs.getString("last_name")+" ");
        System.out.print(rs.getString("first_name")+" ");
        System.out.print(sd.format(rs.getDate("last_access_date"))+" ");
      }
    }
    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.rongsen.com.cn/show-16406-1.html
网站维护教程更新时间:2012-04-07 00:21:34  【打印此页】  【关闭
我要申请本站N点 | 黑客防线官网 |  
专业服务器维护及网站维护手工安全搭建环境,网站安全加固服务。黑客防线网安服务器维护基地招商进行中!QQ:29769479

footer  footer  footer  footer