java-上传文件与现实上传文件

项目结构:

 

项目展示:

 

数据库:

/*
SQLyog Ultimate v12.09 (64 bit)
MySQL - 5.5.53 : Database - fileupload
*********************************************************************
*//*!40101 SET NAMES utf8 */;/*!40101 SET SQL_MODE=''*/;/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`fileupload` /*!40100 DEFAULT CHARACTER SET utf8 */;USE `fileupload`;/*Table structure for table `fileupload` */DROP TABLE IF EXISTS `fileupload`;CREATE TABLE `fileupload` (`id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',`name` varchar(255) DEFAULT NULL COMMENT '产品名称',`path` varchar(255) DEFAULT NULL COMMENT '产品存储路径',`realname` varchar(255) DEFAULT NULL COMMENT '产品描述图片真实名称',PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8;/*Data for the table `fileupload` */insert  into `fileupload`(`id`,`name`,`path`,`realname`) values (20,'jack','/2017/8/16/cfd0d04e92714dcdb08c64c9db5fa638.jpg','jklh.jpg'),(21,'小米','/2017/8/16/72ee3800c2e44679a5df17a083f7759d.jpg','timg.jpg');/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

 

-------------------------------

代码:

com.gordon.dao:

--ProductDao.java

package com.gordon.dao;import java.sql.SQLException;
import java.util.List;import org.apache.commons.dbutils.QueryRunner;
import org.apache.commons.dbutils.handlers.BeanListHandler;import com.gordon.domain.Product;
import com.gordon.utils.DataSourceUtil;public class ProductDao {/*** 添加产品* @param product_name* @param fileRealName* @param saveDbPath* @return* @throws SQLException */public int addProduct(String product_name, String fileRealName, String saveDbPath) throws SQLException {QueryRunner qr = new QueryRunner(DataSourceUtil.getDataSource());String sql = "INSERT INTO fileupload (name,realname, path) VALUES (?, ?, ?)";return qr.update(sql, product_name, fileRealName, saveDbPath);}/*** * @return* @throws SQLException */public List<Product> getAllProduct() throws SQLException {QueryRunner qr = new QueryRunner(DataSourceUtil.getDataSource());String sql = "select * from fileupload";return qr.query(sql, new BeanListHandler<Product>(Product.class));}}

 

com.gordon.domain:
--Product.java

package com.gordon.domain;public class Product {private int id;private String name;private String realname;private String path;public Product() {}public int getId() {return id;}public void setId(int id) {this.id = id;}public String getName() {return name;}public void setName(String name) {this.name = name;}public String getRealname() {return realname;}public void setRealname(String realname) {this.realname = realname;}public String getPath() {return path;}public void setPath(String path) {this.path = path;}
}

 

com.gordon.service:
--ProductService.java

package com.gordon.service;import java.sql.SQLException;
import java.util.List;import com.gordon.dao.ProductDao;
import com.gordon.domain.Product;public class ProductService {/*** 添加产品* @param product_name* @param fileRealName* @param saveDbPath* @return* @throws SQLException */public int addProduct(String product_name, String fileRealName, String saveDbPath) throws SQLException {return new ProductDao().addProduct(product_name, fileRealName, saveDbPath);}/*** 获取所有商品* @return * @throws SQLException */public List<Product> getAllProduct() throws SQLException {return new ProductDao().getAllProduct();}}

 

com.gordon.utils:

--DataSourceUtil.java

package com.gordon.utils;import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;import javax.sql.DataSource;import com.mchange.v2.c3p0.ComboPooledDataSource;public class DataSourceUtil {private static ComboPooledDataSource ds = new ComboPooledDataSource();/*** 获取数据源* * @return 连接池*/public static DataSource getDataSource() {return ds;}/*** 获取连接* * @return 连接* @throws SQLException*/public static Connection getConnection() throws SQLException {return ds.getConnection();}/*** 释放资源* * @param conn*            连接* @param st*            语句执行者* @param rs*            结果集*/public static void closeResource(Connection conn, Statement st, ResultSet rs) {closeResultSet(rs);closeStatement(st);closeConn(conn);}/*** 释放连接* * @param conn*            连接*/public static void closeConn(Connection conn) {if (conn != null) {try {conn.close();} catch (SQLException e) {e.printStackTrace();}conn = null;}}/*** 释放语句执行者* * @param st*            语句执行者*/public static void closeStatement(Statement st) {if (st != null) {try {st.close();} catch (SQLException e) {e.printStackTrace();}st = null;}}/*** 释放结果集* * @param rs*            结果集*/public static void closeResultSet(ResultSet rs) {if (rs != null) {try {rs.close();} catch (SQLException e) {e.printStackTrace();}rs = null;}}
}

 

com.gordon.web.servlet:

--AddProductServlet.java

package com.gordon.web.servlet;import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Calendar;
import java.util.UUID;import javax.servlet.ServletException;
import javax.servlet.annotation.MultipartConfig;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.Part;import org.apache.commons.io.IOUtils;import com.gordon.service.ProductService;/*** 添加产品*/
@WebServlet("/addProduct")
@MultipartConfig
public class AddProductServlet extends HttpServlet {private static final long serialVersionUID = 1L;protected void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {request.setCharacterEncoding("utf-8");String product_name = request.getParameter("name");Part part = request.getPart("file");// 获取真实文件名称String fileRealName = this.getFileRealName(part);// 获取服务器上的绝对存储路径与数据库上的相对路径String[] savePath = this.getSavePath(request, fileRealName);int res = 0;try {// 上传文件this.uploadFile(part, savePath[0]);// 将数据存入数据库res = new ProductService().addProduct(product_name, fileRealName, savePath[1]);} catch (Exception e) {e.printStackTrace();}if (res != 1) {request.setAttribute("msg", "添加文件失败!");request.getRequestDispatcher("/error_page.jsp").forward(request, response);}response.sendRedirect(request.getContextPath() + "/showProduct");}/*** 获取保存路径 [0] 服务器存储路径 [1]数据库存储路径* * @param request* @param fileRealName* @return*/private String[] getSavePath(HttpServletRequest request, String fileRealName) {// 获取存储时的随机产品名称String randomFilePath = this.getRandomFileName(fileRealName);// 获取存储绝对路径String savepath = request.getServletContext().getRealPath("/upload");// 获取存储目录 如:/2017/12/23/ 2017-12-23String savedir = this.getSaveDir();// 最终存储路径String saveWebPosition = savepath + savedir;String saveDbPosition = savedir;// 服务器文件夹不存在则创建File file = new File(saveWebPosition);if (!file.exists()) {file.mkdirs();}String[] res = { saveWebPosition + randomFilePath, saveDbPosition + randomFilePath };return res;}/*** 获取存储目录* * @return*/private String getSaveDir() {Calendar now = Calendar.getInstance();int year = now.get(Calendar.YEAR);int month = now.get(Calendar.MONTH) + 1;int day = now.get(Calendar.DAY_OF_MONTH);return ("/" + year + "/" + month + "/" + day + "/").toString();}/*** 获取上传文件名称* * @param part* @return*/private String getFileRealName(Part part) {String contentDisposition = part.getHeader("Content-Disposition");String filerealname = contentDisposition.substring(contentDisposition.lastIndexOf("filename="));return filerealname.substring(10, filerealname.length() - 1);}/*** 上传文件* * @param part*/private void uploadFile(Part part, String saveWebPath) throws Exception {InputStream is = part.getInputStream();FileOutputStream os = new FileOutputStream(saveWebPath);IOUtils.copy(is, os);is.close();os.close();part.delete();}/*** 获取随机产品名称* * @param part* @return*/private String getRandomFileName(String fileRealName) {String fileSuffix = fileRealName.substring(fileRealName.lastIndexOf("."));String randomName = UUID.randomUUID().toString().replace("-", "").toLowerCase();return randomName + fileSuffix;}
}

 

--ShowProductServlet.java

package com.gordon.web.servlet;import java.io.IOException;
import java.sql.SQLException;
import java.util.List;import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;import com.gordon.domain.Product;
import com.gordon.service.ProductService;/*** 展示数据*/
@WebServlet("/showProduct")
public class ShowProductServlet extends HttpServlet {private static final long serialVersionUID = 1L;protected void doGet(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {List<Product> list = null;try {list = new ProductService().getAllProduct();} catch (SQLException e) {e.printStackTrace();}request.setAttribute("list", list);request.getRequestDispatcher("/show_product.jsp").forward(request, response);}protected void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {doGet(request, response);}
}

 

c3p0-config.xml

<c3p0-config><!-- 默认配置,如果没有指定则使用这个配置 --><default-config><!-- 基本配置 --><property name="driverClass">com.mysql.jdbc.Driver</property><property name="jdbcUrl">jdbc:mysql://localhost:3306/fileupload</property><property name="user">root</property><property name="password">root</property><!--扩展配置--><property name="checkoutTimeout">30000</property><property name="idleConnectionTestPeriod">30</property><property name="initialPoolSize">10</property><property name="maxIdleTime">30</property><property name="maxPoolSize">100</property><property name="minPoolSize">10</property><property name="maxStatements">200</property></default-config> <!-- 命名的配置 --><named-config name="itcast"><property name="driverClass">com.mysql.jdbc.Driver</property><property name="jdbcUrl">jdbc:mysql://127.0.0.1:3306/xxxx</property><property name="user">root</property><property name="password">1234</property><!-- 如果池中数据连接不够时一次增长多少个 --><property name="acquireIncrement">5</property><property name="initialPoolSize">20</property><property name="minPoolSize">10</property><property name="maxPoolSize">40</property><property name="maxStatements">20</property><property name="maxStatementsPerConnection">5</property></named-config>
</c3p0-config> 

 

-------------------------------

add_product.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body><form action="${ pageContext.request.contextPath }/addProduct" method="post"enctype="multipart/form-data"><table><tr><td>产品名称:</td><td><input type="text" name="name" /></td></tr><tr><td>产品图片:</td><td><input type="file" name="file" /></td></tr><tr><td colspan="2"><input type="submit" value="添加产品" /></td></tr></table></form>
</body>
</html>

 

error_page.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8"pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>${ msg }
</body>
</html>

 

index.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body><a href="${ pageContext.request.contextPath }/add_product.jsp">添加产品</a>
</body>
</html>

 

show_product.jsp:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body><table border="1"><tr><td>id</td><td>产品名称</td><td>产品展示</td></tr><c:forEach var="p" items="${ list }"><tr><td>${ p.id }</td><td>${ p.name }</td><td><img alt="" width="100" height="100" src="${ pageContext.request.contextPath}/upload${ p.path }"></td></tr></c:forEach></table>
</body>
</html>

 

转载于:https://www.cnblogs.com/hfultrastrong/p/7374065.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/428902.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

登录微信用android设备,Android 之微信登录

准备工作需要在微信开放平台注册登录账户。还得办理开发者资质认证&#xff0c;审核费用为300元。2.在微信开放平台创建移动应用&#xff0c;填写相关信息后提交审核。简述业务流程1.获取appId和secret2.通过appId和secret调微信接口获取 code3.通过code和getAccessToken()方法…

《浅谈CT》总结

注明来自 http://www.ssdfans.com/?p1941 这里说的CT&#xff0c;不是医院里面的CT&#xff0c;而是闪存的一种技术&#xff1a;Charge Trap。 闪存不只有Floating Gate&#xff0c;还有Charge Trap。 浮栅极材料是导体&#xff0c;一般为多晶硅。 CTF&#xff08;Charge Trap…

android可见区域,识别目标View在HorizontalScrollView可见区域

完成需求的时候涉及到这个所以撸了一下本文章是本人原创&#xff0c;转载请带原地址连接先放效果图(霁雪清虹"是目标)&#xff1a;首先需要一个自定义HorizontalScrollView&#xff0c;复写一个View的onScrollChanged方法&#xff0c;用于监听滑动变化代码如下&#xff1a…

AI单挑Dota 2世界冠军:被电脑虐哭……

OpenAI的机器人刚刚在 Dota2 1v1 比赛中战胜了人类顶级职业玩家 Denti。以建设安全的通用人工智能为己任的 OpenAI&#xff0c;通过“Self-Play”的方式&#xff0c;从零开始训练出了这个机器人。 Dota2沦陷 继横扫顶级的人类国际象棋大师和围棋大师后&#xff0c;计算机如今在…

鸿蒙关键技术研究,华为鸿蒙 2.0 系统主题演讲公布,详细架构 9 月 11 日揭晓

IT之家 8 月 30 日消息 华为 9 月 10 日将举行华为开发者大会 2020&#xff0c;华为官网表示&#xff0c;“我们将与您分享 HMS Core 5.0 最新进展&#xff0c; 揭开 HarmonyOS 和 EMUI 11 的神秘面纱。 振奋人心的新技术&#xff0c;深入的交流学习机会&#xff0c; 更灵动的想…

JAVA经典算法40题

【程序1】 题目&#xff1a;古典问题&#xff1a;有一对兔子&#xff0c;从出生后第3个月起每个月都生一对兔子&#xff0c;小兔子长到第四个月后每个月又生一对兔子&#xff0c;假如兔子都不死&#xff0c;问每个月的兔子总数为多少&#xff1f; 1.程序分析&#xff1a; 兔子…

度度熊与邪恶大魔王

链接&#xff1a;http://acm.hdu.edu.cn/showproblem.php?pid6082 Problem Description 度度熊为了拯救可爱的公主&#xff0c;于是与邪恶大魔王战斗起来。邪恶大魔王的麾下有n个怪兽&#xff0c;每个怪兽有a[i]的生命值&#xff0c;以及b[i]的防御力。度度熊一共拥有m种攻击方…

html加注算法源码,200种加密算法(源码)

【实例简介】【实例截图】【核心代码】3way.cpp3way.h3wayval.datalgebra.cppalgebra.hasn.cppasn.hbase64.cppbase64.hbench.cppbench.hbfinit.cppblowfish.cppblowfish.hblum1024.datblum2048.datblum512.datblumgold.cppblumgold.hblumshub.cppblumshub.hcast.cppcast.hcast…

ibm量子计算机科学家,重磅!IBM发布全球首个独立商用量子计算机

原标题&#xff1a;【重磅】IBM发布全球首个独立商用量子计算机雷锋网消息&#xff0c;全球的科技巨头都在量子计算上投入了大量资源。值得关注的是&#xff0c;在2019 CES上&#xff0c;IBM宣布推出IBM Q System One&#xff0c;该系统是世界上首个专为科学和商业用途设计的集…

html5干货,干货:详解HTML5中常见的五大全局属性

HTML5中新增了“全部属性”的概念。所谓全局属性它是指可以对任何元素都可以使用的属性&#xff0c;今天为大家详细介绍三种常见的全局属性。contentEditable属性contentEditable是由微软开发。被其他浏览器反编译并投入应用的一个全局属性。它的主要功能是是否允许用户编辑元素…

江阳职高计算机应用教改实验,计算机应用课程教改模式

掌握基本的计算机操作技能几乎成为当前社会每位劳动者的必备知识。在此情况下&#xff0c;以就业为根本导向的高职院校更应当注重学生的计算机基本教学。“计算机应用基础”课程教学也要不断与与时俱进&#xff0c;这样在才能适应社会对人才的全新要求。本文主要就高职院校“计…

如何开发一个异常检测系统:异常检测 vs 监督学习

异常检测算法先是将一些正常的样本做为无标签样本来学习模型p(x),即评估参数&#xff0c;然后用学习到的模型在交叉验证集上通过F1值来选择表现最好的ε的值&#xff0c;然后在测试集上进行算法的评估。这儿用到了带有标签的数据&#xff0c;那么为什么不直接用监督学习对y1和y…

KVM--安装及初步使用

KVM是Kernel-based Virtual Machine的简称,是一个开源的虚拟化模块,今天我将在CentOS7的操作系统上安装KVM,以下是我的安装步骤. 一.环境信息 系统: CentOS 7.2 IP: 10.0.0.12/24 在虚拟机安装时,需要启用CPU的虚拟化功能 二. KVM安装步骤 1. 安装qemu-kvm和libvirt [rootkvm-…

中南大学和中山大学计算机专业哪个好,中山大学和中南大学哪个实力更强?一字之差,一起来看看吧!...

原标题&#xff1a;中山大学和中南大学哪个实力更强&#xff1f;一字之差&#xff0c;一起来看看吧&#xff01;我国好大学有很多&#xff0c;但是各大学之间的实力参差不齐&#xff0c;就算是985也有很大区别&#xff0c;今天我们就谈一谈两个名字&#xff0c;比较相似的&…

Drozer快速使用指南

Drozer快速使用指南 1、简介&#xff1a; Drozer是一款用于测试android应用程序漏洞的安全评估工具&#xff0c;能够发现多种类型的安全的漏洞&#xff0c;免费版本的相关资源下载地址&#xff1a; https://www.mwrinfosecurity.com/products/drozer/community-edition/ 其中包…

Akka(19): Stream:组合数据流,组合共用-Graph modular composition

akka-stream的Graph是一种运算方案&#xff0c;它可能代表某种简单的线性数据流图如&#xff1a;Source/Flow/Sink&#xff0c;也可能是由更基础的流图组合而成相对复杂点的某种复合流图&#xff0c;而这个复合流图本身又可以被当作组件来组合更大的Graph。因为Graph只是对数据…

CSS-posiziton

1. 想要实现&#xff0c;”返回顶部”永远位于页面的右下角。需要用到position函数。CSS:层叠样式表。用到了分层的功能。 position:fixed; 永远固定在一个地方。 <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8">&…

怎么用树莓派制作web服务器,用树莓派做web服务器,靠谱吗?

有点想入门树莓派&#xff0c;然后做一个小web服务器&#xff0c;放在学校内网。大家有做过类似的事情吗&#xff1f;做过&#xff0c;自己用做测试的话是没什么问题的&#xff0c;而且非常小巧&#xff0c;携带方便。买的时候注意还要搭配这三个配件1 可以用的无线网卡&#x…

笔记本如何与其他计算机共享,笔记本电脑怎么和手机共享文件

假如想要用手机打开电脑上大容量的视频或其他文件&#xff0c;但是手机的容量又比较小&#xff0c;该怎么办呢?这个时候&#xff0c;我们就可以在电脑上设置共享文件夹&#xff0c;然后在手机上通过局域网来查看该共享文件夹就可以解决这个问题。那么笔记本电脑怎么和手机共享…

服务器系统崩了能pe,系统崩溃了无法正常重装系统?教你用PE虚拟盘来解决!...

如果电脑系统损坏开不了机怎么办&#xff1f;安全模式啥的都进入不了怎么办&#xff1f;不用怕&#xff0c;小编教你用PE重装系统&#xff0c;十分简单哦。用PE系统镜像还原重装系统&#xff1a;工具&#xff1a;U盘(最好有8G及以上的容量&#xff0c;因为一个windows7以上的系…