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-23
String 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>
java-上传文件与现实上传文件的更多相关文章
- Java实现FTP文件与文件夹的上传和下载
Java实现FTP文件与文件夹的上传和下载 FTP 是File Transfer Protocol(文件传输协议)的英文简称,而中文简称为"文传协议".用于Internet上的控制 ...
- java web学习总结(二十四) -------------------Servlet文件上传和下载的实现
在Web应用系统开发中,文件上传和下载功能是非常常用的功能,今天来讲一下JavaWeb中的文件上传和下载功能的实现. 对于文件上传,浏览器在上传的过程中是将文件以流的形式提交到服务器端的,如果直接使用 ...
- Java 实现文件上传、下载、打包、文件copy、文件夹copy。
文件and文件夹copy package org.test; import java.io.*; public class FileCopy { /** * 复制单个文件 * * @param old ...
- 笨鸟先飞之Java(一)--使用struts2框架实现文件上传
无论是.net还是Java,我们最常接触到的就是文件的上传和下载功能,在Java里要实现这两个经常使用功能会有非常多种解决方案,可是struts2的框架却能给我们一个比較简单的方式,以下就一起来看吧: ...
- java上传、下载、删除ftp文件
一共三个类,一个工具类Ftputil.,一个实体类Kmconfig.一个测试类Test 下载地址:http://download.csdn.net/detail/myfmyfmyfmyf/669710 ...
- Java web开发——文件夹的上传和下载
我们平时经常做的是上传文件,上传文件夹与上传文件类似,但也有一些不同之处,这次做了上传文件夹就记录下以备后用. 这次项目的需求: 支持大文件的上传和续传,要求续传支持所有浏览器,包括ie6,ie7,i ...
- java web 能够实现整个文件夹的上传下载吗?
在Web应用系统开发中,文件上传和下载功能是非常常用的功能,今天来讲一下JavaWeb中的文件上传和下载功能的实现. 对于文件上传,浏览器在上传的过程中是将文件以流的形式提交到服务器端的,如果直接使用 ...
- java+web上传文件夹内的所有文件
javaweb上传文件 上传文件的jsp中的部分 上传文件同样可以使用form表单向后端发请求,也可以使用 ajax向后端发请求 1.通过form表单向后端发送请求 <form id=" ...
- 需求-java web 能够实现整个文件夹的上传下载吗?
我们平时经常做的是上传文件,上传文件夹与上传文件类似,但也有一些不同之处,这次做了上传文件夹就记录下以备后用. 这次项目的需求: 支持大文件的上传和续传,要求续传支持所有浏览器,包括ie6,ie7,i ...
随机推荐
- [译]流言终结者 —— SQL Server 是Sybase的产品而不是微软的
http://www.cnblogs.com/xxxtech/archive/2011/12/30/2307859.html by Euan Garden 这些年来我听说过关于这个流言的许多版本,其中 ...
- 让你的APP和你的服务器畅快通讯
做安卓开发有很多时候都是要和web交互的,我们很难制作本地应用,这次把小弟整出来的安卓和服务器通讯贡献出来,希望能帮到需要的朋友,同时也是加深印象. 我们先来搭建安卓客户端,首先写好布局文件: 1.布 ...
- Python学习笔记015——文件file的常规操作之一(文本文件)
1 什么是文件 文件是用于数据存储的单位 文件通常用来长期保存数据 读写文件是最常见的I/O操作.Python内置了读写文件的函数,用法和C是兼容的. 读写文件的功能都是由操作系统提供的,一般而言,操 ...
- android 登陆界面
LoginActivity.java package com.example.ruian; import android.app.Activity; import android.app.AlertD ...
- Open SSH原理
OpenSSH(免费的 SSH 的实现)类似于 telnet 或rsh,ssh 客户程序也可以用于登录到远程机器.所要求的只是该远程机器正在运行 sshd,即 ssh 服务器进程.但是,与 telne ...
- Linux内核同步 - 原子操作
一.源由 我们的程序逻辑经常遇到这样的操作序列: 1.读一个位于memory中的变量的值到寄存器中 2.修改该变量的值(也就是修改寄存器中的值) 3.将寄存器中的数值写回memory中的变量值 如果这 ...
- Python 列表 reverse() 方法
描述 Python 列表 reverse() 方法对列表中的元素进行反向排序. 语法 reverse() 方法语法: L.reverse() 参数 无. 返回值 该方法没有返回值,但是会对列表的元素进 ...
- Python degrees() 函数
描述 degrees() 将弧度转换为角度. 语法 以下是 degrees() 方法的语法: import math math.degrees(x) 注意:degrees()是不能直接访问的,需要导入 ...
- [转]Hspice和Spice Explorer许可文件设置时环境变量FLEXLM_BATCH = 1的一些现象
之前在T400上安装Spice Explorer时碰到运行Spice Explorer时只能看到Log界面,主程序界面自动消失的问题.后经论坛高手指点,在环境变量设置中去掉"FLEXLM_B ...
- npm 国内淘宝镜像cnpm、设置淘宝源
1.下载和使用cnpm 某些插件很奇怪,需要用国内的镜像下载才可以 #安装淘宝镜像npm install cnpm -g --registry=https://registry.npm.taobao. ...