资源简介
JSP + Servlet 实现 网络相册 源代码
新建相册 删除相册 上传照片 浏览照片等功能。类似 QQ空间相册功能。
代码片段和文件信息
package com.handson.dao;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.List;
import com.handson.model.connection.ConnectionFactory;
import com.handson.model.vo.Album;
import com.handson.model.vo.AlbumPhoto;
public class AlbumDao {
public List queryAllAlbum(Album album) {
List albumlist = new ArrayList();
Statement st= null;
ResultSet rs = null;
Connection con = ConnectionFactory.getConnection();
try {
st = con.createStatement();
rs = st.executeQuery(“select * from t_album where user_id=“+album.getUser_id());
while(rs.next()){
Album alBum = new Album();
alBum.setAlbum_id(rs.getInt(“album_id“));
alBum.setAlbum_name(rs.getString(“album_name“));
alBum.setAlbum_content(rs.getString(“album_content“));
alBum.setAlbum_picurl(rs.getString(“album_picurl“));
albumlist.add(alBum);
}
} catch (SQLException e) {
e.printStackTrace();
}
return albumlist;
}
public List getPhoto(String albumid){
int id = Integer.parseInt(albumid);
List list = new ArrayList();
Statement st= null;
ResultSet rs = null;
Connection con = ConnectionFactory.getConnection();
try {
st = con.createStatement();
rs = st.executeQuery(“select * from t_albumphoto where album_id=“+id);
while(rs.next()){
AlbumPhoto photo = new AlbumPhoto();
photo.setAlbum_photoid(rs.getInt(“album_photoid“));
photo.setAlbum_photoname(rs.getString(“album_photoname“));
photo.setAlbum_photourl(rs.getString(“album_photourl“));
photo.setAlbum_photocontents(rs.getString(“album_photocontents“));
list.add(photo);
}
} catch (SQLException e) {
e.printStackTrace();
}
return list;
}
public int insertphoto(int albumid String nameString album_photourlString contents) {
int i = 0;
PreparedStatement pst= null;
Connection con = ConnectionFactory.getConnection();
try {
pst = con.prepareStatement(“insert into t_albumphoto values(????)“);
pst.setInt(1 albumid);
pst.setString(2 name);
pst.setString(3 album_photourl);
pst.setString(4 contents);
i = pst.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
}
return i;
}
public int insertAlbum(Album album) {
int i = 0;
PreparedStatement pst= null;
Connection con = ConnectionFactory.getConnection();
try {
pst = con.prepareStatement(“insert into t_album values(????)“);
pst.setString(1 album.getAlbum_name());
pst.setString(2 album.getAlbum_content());
pst.setString(3 album.getAlbum_picurl());
pst.setInt(4 album.getUser_id());
i = pst.executeUpdate();
} catch (SQLException e) {
e.printStackTrace();
}
return i;
}
public int deletePh
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 897 2010-08-06 10:10 网络相册(JSP+MSSQL)\freephoto\.classpath
文件 300 2010-08-09 09:09 网络相册(JSP+MSSQL)\freephoto\.myme
文件 1227 2010-08-06 10:10 网络相册(JSP+MSSQL)\freephoto\.project
文件 1048576 2010-09-01 15:55 网络相册(JSP+MSSQL)\freephoto\data\freephoto.mdf
文件 1048576 2010-09-01 15:55 网络相册(JSP+MSSQL)\freephoto\data\freephoto_date.ldf
文件 3369 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\dao\AlbumDao.java
文件 2170 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\dao\UserDao.java
文件 824 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\model\connection\ConnectionFactory.java
文件 918 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\model\vo\Album.java
文件 1054 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\model\vo\AlbumPhoto.java
文件 566 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\model\vo\User.java
文件 2561 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\createalbumServlet.java
文件 1247 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\DeleteAlbumServlet.java
文件 1367 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\deletePhotoServlet.java
文件 1078 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\exitServlet.java
文件 1794 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\LoginServlet.java
文件 1339 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\MyPhotoAlumServlet.java
文件 1329 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\MyPhotoServlet.java
文件 1633 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\NewServlet.java
文件 1718 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\photoServlet.java
文件 2524 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\src\com\handson\servlet\UploadServlet.java
文件 3018 2010-08-06 10:11 网络相册(JSP+MSSQL)\freephoto\src\com\handson\util\UploadImage.java
文件 2406 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\WebRoot\createphotoalbum.jsp
文件 5187 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\WebRoot\images\1.jpg
文件 3990 2010-08-06 10:13 网络相册(JSP+MSSQL)\freephoto\WebRoot\images\10.jpg
文件 5731 2010-08-06 10:13 网络相册(JSP+MSSQL)\freephoto\WebRoot\images\11.jpg
文件 4490 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\WebRoot\images\12.jpg
文件 4345 2010-08-06 10:13 网络相册(JSP+MSSQL)\freephoto\WebRoot\images\13.jpg
文件 5648 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\WebRoot\images\2.jpg
文件 5869 2010-08-06 10:12 网络相册(JSP+MSSQL)\freephoto\WebRoot\images\4.jpg
............此处省略76个文件信息
- 上一篇:毕向东Java全套.txt
- 下一篇:教学管理系统代码java
相关资源
- 网上书店 jsp 完整供参考
- java socket多人聊天文字+图片+文件传输
- jsp导航条 下拉菜单
- 企业论坛系统 jsp + servlet
- jsp个人信息管理系统
- springMVC+maven+hibernate框架
- 企业商品销售管理系统jsp+java+sql
-
ba
seServlet - commons-fileupload-1.2.1.jar与commons-io-1.3.
- 购物车jsp+sql server
- jsp登录页面代码jsp登录页面代码
- j2ee课程设计小项目jsp+servlet+javaBean+
- MyEclipse+Servlet+Jsp+MySql+Tomcat实现简单订
- springboot StringRedisTemplate redis工具类
- jdk1.8+eclipse4.8+tomcat8.5.zip
- 学生成绩管理系统 jsp+sqlserver源码
- 图书管理系统 jsp+mysql 毕业设计
- java 项目 电子卡充值系统jsp + javabea
- java+mysql学生及教师信息管理系统
- 在线财务管理系统(含jsp源码)
- jsp_html_web_实现页面跳转
- C++ to Java Converter
- 学习JAVA Web的过程和方法
- Java+Access+GUI学生成绩管理系统
- 学生信息管理系统(JSP源码)
- C++转换为Java工具破解版[非试用版1.
- jsp邮箱系统,实现了收邮件和发送附
- 分页显示java+jsp+eclipse+tomcat
- 通讯录web版
- Spring Cloud Consul服务消费方集成JSP和
评论
共有 条评论