• 大小: 243.98 KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-12-21
  • 语言: Java
  • 标签:

资源简介

西北农林科技大学信息工程学院2010年实习题

基于JSP制作的

资源截图

代码片段和文件信息

package db;

import java.sql.*;

public class DBUtils {
private static Connection con;
public  Connection getConnection(){
   String url=“jdbc:mysql://localhost:3306/test“;
   String user=“root“;
   String password=“123456“;
   try{
    Class.forName(“com.mysql.jdbc.Driver“);
    con=DriverManager.getConnection(url user password);
   }catch(Exception e){
    e.printStackTrace();
   }
   return con;
}

//查找
public ResultSet find(String sql){
DBUtils db = new DBUtils();
con=db.getConnection();
Statement st;
ResultSet rs = null;
try {
st = con.createStatement();
rs=st.executeQuery(sql);     
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return rs;
}


//增加
public void insert(String sql){
   try{
DBUtils db = new DBUtils();
    con=db.getConnection();
    Statement st=con.createStatement();
    st.executeUpdate(sql);   
    st.close();
    con.close();
   
   }catch(Exception e){
    e.printStackTrace();
   }
  
}

//删除
public void delete(String sql){
   try{
DBUtils db = new DBUtils();
    con=db.getConnection();
    Statement st=con.createStatement();
    st.execute(sql);   
    st.close();
    con.close();
    
   }catch(Exception e){
    e.printStackTrace();
   }
  
}
public static void main(String[] args) {
DBUtils db = new DBUtils();
   con=db.getConnection();
      Statement st;
   try {
   String name=“gaoze12“;
   String introduction=“1“;
   String type=“1“;
   int credit=1;
    st = con.createStatement();
    String sql=“insert into course(nameintroductiontypecredit) values(‘“+name+“‘ ‘“+introduction+“‘‘“+type+“‘‘“+credit+“‘)“;
    st.execute(sql);
    
   
   
     
   } catch (SQLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }
     
    }
}



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1222  2010-09-07 23:58  系统维护与管理\test\.project

     文件        286  2010-09-07 23:58  系统维护与管理\test\.mymetadata

     文件        429  2010-09-15 21:17  系统维护与管理\test\.classpath

     文件       5449  2010-09-15 21:04  系统维护与管理\test\WebRoot\index.jsp

     文件       2305  2010-09-15 21:04  系统维护与管理\test\WebRoot\loginCheck.jsp

     文件        403  2010-09-15 21:04  系统维护与管理\test\WebRoot\AdminPage.jsp

     文件       1887  2010-09-15 21:04  系统维护与管理\test\WebRoot\left.html

     文件       1424  2010-09-15 21:04  系统维护与管理\test\WebRoot\swich.html

     文件       1195  2010-09-15 21:04  系统维护与管理\test\WebRoot\test.jsp

     文件        414  2010-09-15 21:04  系统维护与管理\test\WebRoot\AdminPage.jsp.bak

     文件       1815  2010-09-15 21:04  系统维护与管理\test\WebRoot\main.html

     文件       1801  2010-09-15 21:04  系统维护与管理\test\WebRoot\main.html.bak

     文件       2930  2010-09-15 21:04  系统维护与管理\test\WebRoot\result\CourseDisplay.jsp

     文件       2926  2010-09-15 21:04  系统维护与管理\test\WebRoot\result\ClassDisplay.jsp

     文件         43  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\ccc.gif

     文件        312  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\pic24.gif

     文件        308  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\pic23.gif

     文件      18432  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\Thumbs.db

     文件       1562  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\AdminPage.jsp

     文件     114442  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_01.jpg

     文件       1964  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_02.gif

     文件      12896  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_05.gif

     文件       2959  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_06.gif

     文件      10374  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_07.gif

     文件        920  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_08.gif

     文件       1005  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_09.gif

     文件       1015  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_09_1.gif

     文件        971  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_10.gif

     文件        980  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_10_1.gif

     文件        784  2010-09-15 21:04  系统维护与管理\test\WebRoot\images\login_11.gif

............此处省略59个文件信息

评论

共有 条评论