資源簡介
基于web和Oracle數據庫實現的交友網站,實現了登陸注冊、照片上傳及顯示,查看用戶等相關功能,使用了Servlet,juery和Ajax等主流web技術
代碼片段和文件信息
package?com.tarena.dao;
import?java.sql.Connection;
import?java.sql.PreparedStatement;
import?java.sql.ResultSet;
import?java.util.ArrayList;
import?java.util.List;
import?com.tarena.entity.Pic;
import?com.tarena.util.DbUtil;
/**
?*?處理圖片表的數據庫訪問對象
?*?@author?tarena
?*
?*/
public?class?PicDao?{
public?void?save(Pic?pic)?throws?Exception{
Connection?conn?=?null;
PreparedStatement?stat?=?null;
try?{
conn?=?DbUtil.getConn();
stat?=?conn.prepareStatement(“insert?into?f_pic(picNameuserid)“?+
“?values(??)“);
stat.setString(1?pic.getPicName());
stat.setInt(2?pic.getUserId());
stat.executeUpdate();
}?catch?(Exception?e)?{
e.printStackTrace();
throw?e;
}
finally{
DbUtil.closeConn(conn?stat);
}
}
public?List?findByUserId(int?userId)?thro
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????????294??2014-03-15?19:17??friends\.myme
?????文件????????822??2014-01-21?12:51??friends\.classpath
?????文件????????323??2014-01-17?18:43??friends\.settings\org.eclipse.jdt.core.prefs
?????文件???????1127??2014-01-17?19:26??friends\src\com\tarena\util\DbUtil.java
?????文件????????672??2014-01-19?17:11??friends\src\com\tarena\util\MD5Util.java
?????文件????????818??2014-01-21?19:44??friends\src\com\tarena\util\DateTag.java
?????文件???????4701??2014-01-21?20:21??friends\src\com\tarena\dao\userDao.java
?????文件????????234??2014-01-17?19:51??friends\src\com\tarena\dao\UserDaoInter.java
?????文件???????1462??2014-01-19?16:07??friends\src\com\tarena\dao\PicDao.java
?????文件????????476??2014-01-17?20:44??friends\src\com\tarena\dao\userDaoTest.java
?????文件???????2288??2014-01-18?17:29??friends\src\com\tarena\web\CheckCode.java
?????文件???????7383??2014-01-25?13:55??friends\src\com\tarena\web\ActionServlet.java
?????文件????????779??2014-01-19?15:43??friends\src\com\tarena\entity\Pic.java
?????文件???????1754??2014-01-20?13:14??friends\src\com\tarena\entity\User.java
?????文件????????299??2014-01-17?19:36??friends\friend.sql
?????文件???????1235??2014-01-18?14:38??friends\.project
?????文件????????791??2014-01-25?14:11??friends\WebRoot\js\myjs.js
?????文件?????????36??2014-01-17?18:43??friends\WebRoot\me
?????文件???????8529??2014-01-18?17:26??friends\WebRoot\css\st
?????文件?????????22??2014-01-18?16:51??friends\WebRoot\testCheckCode.jsp
?????文件????????258??2014-01-17?18:44??friends\WebRoot\img\top_left.gif
?????文件????????439??2014-01-17?18:44??friends\WebRoot\img\footer_bg.gif
?????文件???????2139??2014-01-17?18:44??friends\WebRoot\img\footer.gif
?????文件????????143??2014-01-17?18:44??friends\WebRoot\img\content_bg.gif
?????文件????????182??2014-01-17?18:44??friends\WebRoot\img\bullet_green.gif
?????文件????????446??2014-01-17?18:44??friends\WebRoot\img\bg.gif
?????文件???????2740??2014-01-17?18:44??friends\WebRoot\img\tableheader-bg.gif
?????文件???????1293??2014-01-17?18:44??friends\WebRoot\img\tableheader-bg-grey.gif
?????文件????????128??2014-01-17?18:44??friends\WebRoot\img\bullet_grey.gif
?????文件????????104??2014-01-17?18:44??friends\WebRoot\img\button.gif
............此處省略57個文件信息
- 上一篇:王者榮耀所有英雄(mysql數據庫文件)
- 下一篇:oracle自動導出csv
評論
共有 條評論