-
大小: 6.63MB文件類型: .rar金幣: 2下載: 0 次發(fā)布日期: 2023-11-01
- 語言: Java
- 標(biāo)簽:
資源簡介
本系統(tǒng)前臺主要使用JSP作為開發(fā)語言,后臺使用SqlServer作為數(shù)據(jù)庫管理系統(tǒng),開發(fā)環(huán)境是MyEclipse,服務(wù)器采用tomcat,開發(fā)出的一個基于Web技術(shù)的B/S結(jié)構(gòu)的管理系統(tǒng)

代碼片段和文件信息
package?com.dao;
import?java.sql.Connection;
import?java.sql.DriverManager;
import?java.sql.PreparedStatement;
import?java.sql.ResultSet;
import?java.sql.SQLException;
public?class?DB
{
private?Connection?con;
private?PreparedStatement?pstm;
private?String?user?=?“sa“;
private?String?password?=?“sa“;
private?String?className?=?“com.microsoft.jdbc.sqlserver.SQLServerDriver“;
private?String?url?=?“jdbc:microsoft:sqlserver://localhost:1433;databaseName=db_ygjx“;
public?DB()
{
try
{
Class.forName(className);
}?catch?(ClassNotFoundException?e)
{
System.out.println(“加載數(shù)據(jù)庫驅(qū)動失敗!“);
e.printStackTrace();
}
}
/**?創(chuàng)建數(shù)據(jù)庫連接?*/
public?Connection?getCon()
{
try
{
con?=?DriverManager.getConnection(url?user?password);
}?catch?(SQLException?e)
{
System.out.println(“創(chuàng)建數(shù)據(jù)庫連接失敗!“);
con?=?null;
e.printStackTrace();
}
return?con;
}
public?void?doPstm(String?sql?object[]?params)
{
if?(sql?!=?null?&&?!sql.equals(““))
{
if?(params?==?null)
params?=?new?object[0];
getCon();
if?(con?!=?null)
{
try
{
System.out.println(sql);
pstm?=?con.prepareStatement(sql
ResultSet.TYPE_SCROLL_INSENSITIVE
ResultSet.CONCUR_READ_ONLY);
for?(int?i?=?0;?i? {
pstm.setobject(i?+?1?params[i]);
}
pstm.execute();
}?catch?(SQLException?e)
{
System.out.println(“doPstm()方法出錯!“);
e.printStackTrace();
}
}
}
}
public?ResultSet?getRs()?throws?SQLException
{
return?pstm.getResultSet();
}
public?int?getCount()?throws?SQLException
{
return?pstm.getUpdateCount();
}
public?void?closed()
{
try
{
if?(pstm?!=?null)
pstm.close();
}?catch?(SQLException?e)
{
System.out.println(“關(guān)閉pstm對象失敗!“);
e.printStackTrace();
}
try
{
if?(con?!=?null)
{
con.close();
}
}?catch?(SQLException?e)
{
System.out.println(“關(guān)閉con對象失敗!“);
e.printStackTrace();
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????1048576??2012-06-02?12:07??181JSP人事工資管理系統(tǒng)\db_ygjx_Data.MDF
?????文件????1048576??2012-06-04?07:25??181JSP人事工資管理系統(tǒng)\db_ygjx_Log.LDF
?????文件????2466251??2012-06-08?12:47??181JSP人事工資管理系統(tǒng)\JSP人事工資管理系統(tǒng)錄像.rar
?????文件???????1416??2012-06-01?08:06??181JSP人事工資管理系統(tǒng)\ygjx\.classpath
?????文件????????285??2012-06-08?03:05??181JSP人事工資管理系統(tǒng)\ygjx\.myme
?????文件???????1222??2012-06-03?19:36??181JSP人事工資管理系統(tǒng)\ygjx\.project
?????文件???????2127??2012-06-03?00:28??181JSP人事工資管理系統(tǒng)\ygjx\src\com\dao\DB.java
?????文件????????962??2012-06-04?10:34??181JSP人事工資管理系統(tǒng)\ygjx\src\com\dao\OpDB.java
?????文件???????1512??2012-06-03?02:31??181JSP人事工資管理系統(tǒng)\ygjx\src\com\orm\Jixiao.java
?????文件???????4267??2012-06-05?04:53??181JSP人事工資管理系統(tǒng)\ygjx\src\com\service\loginService.java
?????文件???????1214??2012-06-06?08:07??181JSP人事工資管理系統(tǒng)\ygjx\src\com\util\EncodingFilter.java
?????文件???????2558??2012-06-03?19:30??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\admin\adminAdd.jsp
?????文件???????2826??2012-06-06?09:02??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\admin\adminMana.jsp
?????文件???????1364??2012-06-07?13:51??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\center.jsp
?????文件???????1566??2012-06-07?01:15??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\down.jsp
?????文件???????2573??2012-06-07?18:05??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\index\sysPro.jsp
?????文件????????848??2013-02-25?17:39??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\index.jsp
?????文件???????4946??2012-06-01?11:20??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\jixiao\jixiaoAdd.jsp
?????文件???????5834??2012-06-05?22:16??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\left.jsp
?????文件???????2511??2012-06-05?00:36??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\middel.jsp
?????文件??????10553??2012-06-10?00:59??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\top.jsp
?????文件???????4227??2012-06-04?03:31??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\userinfo\userPw.jsp
?????文件???????8765??2012-06-08?18:34??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\xinchou\xinchouAdd.jsp
?????文件???????6148??2012-06-04?02:12??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\yuangong\yuangongAdd.jsp
?????文件???????4583??2012-06-03?12:36??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\admin\yuangong\yuangongEditPre.jsp
?????文件????????797??2012-06-05?17:59??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\common\success.jsp
?????文件???????5008??2012-06-01?13:31??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\css\ba
?????文件????????795??2012-06-04?19:35??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\css\dtree.css
?????文件???????1669??2012-06-10?07:56??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\css\front1.css
?????文件???????6520??2012-06-04?14:01??181JSP人事工資管理系統(tǒng)\ygjx\WebRoot\css\layout.css
............此處省略853個文件信息
評論
共有 條評論