• 大小: 2.27MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-20
  • 语言: Java
  • 标签: Java  jsp  html  

资源简介

本资源运用Javaweb实现了网上家具商城的功能,能全方位的展现出网上商城的商品展出,收藏,加入购物车,购买,付款

资源截图

代码片段和文件信息

 package com.yjjj.dao;

import java.sql.*;
import java.util.*;

import com.yjjj.domain.AfficheForm;
import com.yjjj.tool.JDBConnection;

//对公告信息的操作
public class AfficheDao {
  private Connection connection = null; //定义连接的对象
  private PreparedStatement ps = null; //定义预准备的对象
  private JDBConnection jdbc = null; //定义数据库连接对象
  public AfficheDao() {
    jdbc = new JDBConnection();
    connection = jdbc.connection; //利用构造方法取得数据库连接
  }

  //删除的方法
  public void deleteAffiche(Integer id) {
    try {
      ps = connection.prepareStatement(“delete from tb_affiche where id=?“);
      ps.setInt(1 id.intValue());
      ps.executeUpdate();
      ps.close();
    }
    catch (SQLException ex) {
    }
  }

  //修改的方法
  public void updateAffiche(AfficheForm form) {
    try {
      ps = connection.prepareStatement(“update tb_affiche set name=?content=? where id=?“);
      ps.setString(1 form.getName());
      ps.setString(2 form.getContent());
      ps.setInt(3 form.getId().intValue());
      ps.executeUpdate();
      ps.close();
    }
    catch (SQLException ex) {
    }
  }

//添加的方法
  public void insertAffiche(AfficheForm form) {
    try {
      ps = connection.prepareStatement(“insert into tb_affiche values (??getDate())“);
      ps.setString(1 form.getName());
      ps.setString(2 form.getContent());
      ps.executeUpdate();
      ps.close();
    }
    catch (SQLException ex) {
    }
  }

//以数据库流水号为条件查询信息
  public AfficheForm selectOneAffiche(Integer id) {
    AfficheForm affiche = null;
    try {
      ps = connection.prepareStatement(“select * from tb_affiche where id=?“);
      ps.setInt(1 id.intValue());
      ResultSet rs = ps.executeQuery();
      while (rs.next()) {
        affiche = new AfficheForm();
        affiche.setId(Integer.valueOf(rs.getString(1)));
        affiche.setName(rs.getString(2));
        affiche.setContent(rs.getString(3));
        affiche.setIssueTime(rs.getString(4));
      }
    }
    catch (SQLException ex) {
    }
    return affiche;
  }

//全部查询的方法
  public List selectAffiche() {
    List list = new ArrayList();
    AfficheForm affiche = null;
    try {
      ps = connection.prepareStatement(“select * from tb_affiche order by id DESC“);
      ResultSet rs = ps.executeQuery();
      while (rs.next()) {
        affiche = new AfficheForm();
        affiche.setId(Integer.valueOf(rs.getString(1)));
        affiche.setName(rs.getString(2));
        affiche.setContent(rs.getString(3));
        affiche.setIssueTime(rs.getString(4));
        list.add(affiche);
      }
    }
    catch (SQLException ex) {
    }
    return list;

  }

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-12-24 18:28  B2CFurniture\
     文件        1125  2019-12-24 21:22  B2CFurniture\.classpath
     目录           0  2014-03-22 12:34  B2CFurniture\.myeclipse\
     目录           0  2019-12-24 18:28  B2CFurniture\.myeclipse\profiler\
     文件         960  2014-03-22 12:34  B2CFurniture\.myeclipse\profiler\B2CFurniture on MyEclipse Tomcat.xml
     文件         906  2014-03-22 12:34  B2CFurniture\.myeclipse\profiler\SQLServerDriver.xml
     文件        7462  2014-03-22 12:34  B2CFurniture\.myeclipse\profiler\snapshot-1334060693242.nps
     文件         302  2014-06-09 11:38  B2CFurniture\.mymetadata
     文件         240  2014-03-22 12:34  B2CFurniture\.mystrutsdata
     文件        1838  2014-03-22 12:34  B2CFurniture\.project
     目录           0  2019-12-24 18:28  B2CFurniture\.settings\
     文件         580  2014-03-22 12:34  B2CFurniture\.settings\.jsdtscope
     文件        1040  2014-03-22 12:34  B2CFurniture\.settings\com.genuitec.eclipse.j2eedt.core.prefs
     文件         629  2014-06-09 12:19  B2CFurniture\.settings\org.eclipse.jdt.core.prefs
     文件         137  2014-03-22 12:34  B2CFurniture\.settings\org.eclipse.ltk.core.refactoring.prefs
     文件         458  2014-03-22 12:34  B2CFurniture\.settings\org.eclipse.wst.common.component
     文件         252  2014-03-22 12:34  B2CFurniture\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2014-03-22 12:34  B2CFurniture\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2014-03-22 12:34  B2CFurniture\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2019-12-24 18:28  B2CFurniture\WebRoot\
     目录           0  2019-12-24 18:28  B2CFurniture\WebRoot\meta-INF\
     文件          39  2014-03-22 12:34  B2CFurniture\WebRoot\meta-INF\MANIFEST.MF
     目录           0  2019-12-24 18:28  B2CFurniture\WebRoot\WEB-INF\
     文件       14283  2014-03-22 12:34  B2CFurniture\WebRoot\WEB-INF\.struts-config.mex
     目录           0  2019-12-24 21:22  B2CFurniture\WebRoot\WEB-INF\classes\
     文件          62  2014-03-22 12:34  B2CFurniture\WebRoot\WEB-INF\classes\ApplicationResources.properties
     目录           0  2019-12-24 21:22  B2CFurniture\WebRoot\WEB-INF\classes\com\
     目录           0  2019-12-24 21:22  B2CFurniture\WebRoot\WEB-INF\classes\com\yjjj\
     目录           0  2019-12-24 21:22  B2CFurniture\WebRoot\WEB-INF\classes\com\yjjj\dao\
     文件        3050  2019-12-24 21:22  B2CFurniture\WebRoot\WEB-INF\classes\com\yjjj\dao\AfficheDao.class
     文件        2639  2019-12-24 21:22  B2CFurniture\WebRoot\WEB-INF\classes\com\yjjj\dao\BigTypeDao.class
............此处省略215个文件信息

评论

共有 条评论