• 大小: 6.38MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-28
  • 语言: Html/CSS
  • 标签: html5  聊天室  

资源简介

基于html5的简单聊天室,使用EXT4框架实现窗口视图。

资源截图

代码片段和文件信息

package com.cn;

import java.sql.*;

public class lkdb {
 private Connection conn=null; 
 private ResultSet rs=null;
    /**连接数据库的URL*/  
    private final String url=“jdbc:mysql://localhost:3306/chatroom“;  
    /**指定数据的用户名和密码*/  
    private final String username=“root“;  
    private final String password=“root“;  

  //  private ResultSet resultSet=null;  
  //  private PreparedStatement pstmt=null;  
 
    /** 
     * 建立数据的连接 
     * @exception SQLException ClassNotFoundException 
     */  
    @SuppressWarnings(“finally“)  
    public Connection setconnection(){  
        try{  
            Class.forName(“com.mysql.jdbc.Driver“);  
            conn=DriverManager.getConnection(urlusernamepassword);  
            System.out.println(“连接数据库成功“);  
        }catch(Exception e){  
            e.printStackTrace();  
            System.out.println(“建立数据库发生错误!“);  
        }finally{  
            return conn;  
        }  
    } 
    
  //返回查询结果集 
    public ResultSet executeQuery(String sqlConnection con){
    
     try{
     Statement stm=con.createStatement();
    
    rs=stm.executeQuery(sql);
   
   System.out.println(“查询成功“);
     } 
     catch(Exception e){
     System.out.println(“查询失败“);
    
     }
       return rs;

 }
    
  //返回更新影响行数
    public int executeUpdate(String sqlConnection con){
     int count=0;
     Statement stm=null;
     try{
     stm=con.createStatement();
     count=stm.executeUpdate(sql);
     System.out.println(“注册成功“);   
     }
     catch(Exception e){
     System.out.println(“修改失败“);
     }
        finally{
     try{
     if(stm!=null)
         stm.close();
                            }catch(SQLException e)
     {
     System.out.println(“释放资源失败“);
     }
               }  
                return count;
        }
    
    
    public void freers(ResultSet rs){
      try
      {
      if(rs!=null){
      rs.close();
      System.out.println(“rs关闭成功“);
      }
      }catch(Exception e){
      System.out.println(“关闭结果集失败“);
      }
     
      } 
    
     public void freerc(Connection con){
      
      try{
      if(con!=null){
      con.close();
      System.out.println(“con关闭“);
      }
      }catch(Exception e){
      
      System.out.println(“关闭con失败“);
      }
 }
     
/*public static void main(String[] args) throws SQLException {
// TODO Auto-generated method stub
 lkdb lk=new lkdb();
 Connection con=lk.setconnection();
 String sql=“select * from userinfo“;
 String sql1=“insert into userinfo(unameupass) VALUES(‘mark‘‘0721‘)“;
 lk.executeUpdate(sql1 con);
 ResultSet rs=lk.executeQuery(sql con);

 while (rs.next()) {
    int id = rs.getInt(1);
    String name = rs.getString(2);
    System.out.println(id);
    System.out.println(name);
}
 lk.freerc(con);
 lk.freers(rs);
}*/

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         648  2014-10-11 21:52  .classpath
     文件        1001  2014-10-11 21:52  .project
     目录           0  2014-10-11 21:52  .settings\
     文件         491  2014-10-11 21:52  .settings\.jsdtscope
     文件          55  2014-10-11 21:52  .settings\org.eclipse.core.resources.prefs
     文件         357  2014-10-11 21:52  .settings\org.eclipse.jdt.core.prefs
     文件         457  2014-10-11 21:52  .settings\org.eclipse.wst.common.component
     文件         335  2014-10-11 21:52  .settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2014-10-11 21:52  .settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2014-10-11 21:52  .settings\org.eclipse.wst.jsdt.ui.superType.name
     文件          65  2014-10-11 21:52  README.md
     目录           0  2014-10-11 21:52  WebContent\
     目录           0  2014-10-11 21:52  WebContent\meta-INF\
     文件          36  2014-10-11 21:52  WebContent\meta-INF\MANIFEST.MF
     目录           0  2014-10-11 21:52  WebContent\WEB-INF\
     文件       55348  2014-10-11 21:52  WebContent\WEB-INF\11.jpg
     文件        7191  2014-10-11 21:52  WebContent\WEB-INF\chat.js
     目录           0  2014-10-11 21:52  WebContent\WEB-INF\lib\
     文件      188671  2014-10-11 21:52  WebContent\WEB-INF\lib\commons-beanutils-1.7.0.jar
     文件      559366  2014-10-11 21:52  WebContent\WEB-INF\lib\commons-collections-3.1.jar
     文件       87776  2014-10-11 21:52  WebContent\WEB-INF\lib\commons-io-1.3.2.jar
     文件      245274  2014-10-11 21:52  WebContent\WEB-INF\lib\commons-lang-2.3.jar
     文件       38015  2014-10-11 21:52  WebContent\WEB-INF\lib\commons-logging-1.0.4.jar
     文件       44598  2014-10-11 21:52  WebContent\WEB-INF\lib\commons-logging-api-1.1.jar
     文件       86381  2014-10-11 21:52  WebContent\WEB-INF\lib\ezmorph-1.0.4.jar
     文件      143977  2014-10-11 21:52  WebContent\WEB-INF\lib\json-lib-2.2.2-jdk15.jar
     文件      709922  2014-10-11 21:52  WebContent\WEB-INF\lib\mysql-connector-java-5.1.7-bin.jar
     文件        1788  2014-10-11 21:52  WebContent\WEB-INF\login.html
     文件         367  2014-10-11 21:52  WebContent\WEB-INF\test.html
     目录           0  2014-10-11 21:52  WebContent\build\
     目录           0  2014-10-11 21:52  WebContent\build\examples\
............此处省略1251个文件信息

评论

共有 条评论