91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

資源簡介

簡單的頁面注冊到數(shù)據(jù)庫,使用一些列 httpServletRequest, httpServlet,domain,DBUtils類,dao類,mysql注冊驅(qū)動器,配置dbinfo.properties文件。

資源截圖

代碼片段和文件信息

package?com.jdbc.dao;

import?java.sql.Connection;
import?java.sql.PreparedStatement;
import?java.sql.SQLException;
import?java.util.Arrays;

import?com.jdbc.utils.DBUtils;
import?com.web.domain.Users;

public?class?UsersDao?{

public?static?int?insertUsers(Users?u)?{
int?rowcount?=?0;
PreparedStatement?pstm?=?null;
Connection?con?=?null;

try?{
con=DBUtils.getConnection();
String?sql=“insert?into?users?values(???????)“;
pstm=con.prepareStatement(sql);
pstm.setobject(1?u.getUsername());
pstm.setobject(2?u.getPassword());
pstm.setobject(3?u.getGender());
pstm.setobject(4?Arrays.toString(u.getHobby()));
pstm.setobject(5?u.getProvince());
pstm.setobject(6?u.getCity());
pstm.setobject(7?u.getIntroduce());
rowcount=pstm.executeUpdate();
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
System.out.println(“UserDao異常信息:“+e.getMessage());
}finally?{
try?{
DBUtils.colosAll(null?pstm?con);
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
System.out.println(“關(guān)資源異常信息:“+e.getMessage());
}
}
return?rowcount;

}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件????????845??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\.classpath

?????文件????????909??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\.project

?????文件????????567??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\.settings\.jsdtscope

?????文件????????364??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\.settings\org.eclipse.jdt.core.prefs

?????文件????????482??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\.settings\org.eclipse.wst.common.component

?????文件????????349??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\.settings\org.eclipse.wst.common.project.facet.core.xml

?????文件?????????49??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\.settings\org.eclipse.wst.jsdt.ui.superType.container

?????文件??????????6??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\.settings\org.eclipse.wst.jsdt.ui.superType.name

?????文件???????2260??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\jdbc\dao\UsersDao.class

?????文件???????2047??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\jdbc\utils\DBUtils.class

?????文件???????2574??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\web\domain\Users.class

?????文件???????2199??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\web\http\HttpServlet01.class

?????文件?????????98??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\dbinfo.properties

?????文件???????1207??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\src\com\jdbc\dao\UsersDao.java

?????文件???????1332??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\src\com\jdbc\utils\DBUtils.java

?????文件???????2009??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\src\com\web\domain\Users.java

?????文件???????1578??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\src\com\web\http\HttpServlet01.java

?????文件?????????98??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\src\dbinfo.properties

?????文件???????3241??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\WebContent\index.html

?????文件?????????39??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\WebContent\meta-INF\MANIFEST.MF

?????文件?????232019??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\WebContent\WEB-INF\lib\commons-beanutils-1.8.3.jar

?????文件??????60841??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\WebContent\WEB-INF\lib\commons-logging-1.1.1.jar

?????文件?????540852??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\WebContent\WEB-INF\lib\mysql-connector-java-5.0.8-bin.jar

?????文件???????1799??2018-01-11?09:21??注冊頁面到數(shù)據(jù)庫Day01Web4\WebContent\WEB-INF\web.xml

?????目錄??????????0??2018-01-12?10:23??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\jdbc\dao

?????目錄??????????0??2018-01-12?10:23??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\jdbc\utils

?????目錄??????????0??2018-01-12?10:23??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\web\domain

?????目錄??????????0??2018-01-12?10:23??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\web\http

?????目錄??????????0??2018-01-12?10:23??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\jdbc

?????目錄??????????0??2018-01-12?10:23??注冊頁面到數(shù)據(jù)庫Day01Web4\build\classes\com\web

............此處省略20個文件信息

評論

共有 條評論

相關(guān)資源