- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章SpringMVC实现文件上传和下载功能由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例为大家分享了SpringMVC实现文件上传和下载的具体代码,供大家参考,具体内容如下 。
文件上传 。
第一步,加入jar包:
commons-fileupload-1.3.1.jar commons-io-2.4.jar 。
第二步,在SpringMVC配置文件中配置CommonsMultipartResovler 。
1
2
3
4
5
|
<
bean
id
=
"multipartResolver"
class
=
"org.springframework.web.multipart.commons.CommonsMultipartResolver"
>
<
property
name
=
"defaultEncoding"
value
=
"utf-8"
></
property
>
//最大上传文件大小
<
property
name
=
"maxUploadSize"
value
=
"1048576"
></
property
>
</
bean
>
|
第三步,前端表单 注意 【POST请求,file类型,enctype="multipart/form-data"】 。
1
2
3
4
5
|
<
form
action
=
"${pageContext.request.contextPath }/testUpload"
method
=
"post"
enctype
=
"multipart/form-data"
>
File:<
input
type
=
"file"
name
=
"file"
><
br
>
desc:<
input
type
=
"text"
name
=
"desc"
><
br
>
<
input
type
=
"submit"
value
=
"submit"
><
br
>
</
form
><
br
>
|
第四步,在controller层创建方法 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
@RequestMapping
(value=
"/testUpload"
,method=RequestMethod.POST)
private
String testUpload(HttpServletRequest request,
@RequestParam
(value=
"desc"
)String desc,
@RequestParam
(value=
"file"
) CommonsMultipartFile file) {
InputStream inputStream =
null
;
OutputStream outputStream =
null
;
ServletContext servletContext = request.getServletContext();
//获取文件存放的真实路径
String realPath = servletContext.getRealPath(
"/upload"
);
//为了避免多次上传同一个文件导致命名重复,在文件名前加UUID前缀
String prefix=UUID.randomUUID().toString();
prefix=prefix.replace(
"-"
,
""
);
String fileName=prefix+
"_"
+file.getOriginalFilename();
File file2=
new
File(realPath);
//检查文件目录是否存在,若不存在就创建目录
if
(!file2.exists()){
file2.mkdirs();
}
try
{
inputStream=file.getInputStream();
outputStream=
new
FileOutputStream(
new
File(realPath+
"/"
+fileName));
//设置缓冲区
byte
[]buffer=
new
byte
[
1024
];
int
len=
0
;
//循环检测文件是否上传完成,未完成就向写入输出流
while
((len=inputStream.read(buffer)) != -
1
){
outputStream.write(buffer,
0
, len);
outputStream.flush();
}
}
catch
(IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
finally
{
//关闭输入输出流
if
(outputStream !=
null
){
try
{
outputStream.close();
inputStream.close();
}
catch
(IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
return
"success"
;
}
|
文件下载 。
用ResponseEntity<byte[]> 返回值完成文件下载;在jsp页面给出链接即可.
jsp页面链接地址:
。
。
在controller层创建方法 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@RequestMapping
(value=
"/testResponseEntity"
)
ResponseEntity<
byte
[]>testResponseEntity(HttpServletRequest request)
throws
Exception{
ServletContext servletContext = request.getServletContext();
//获取要下载的文件的文件名
String fileName=
"喜剧之王.mp3"
;
//获取要下载的文件的真实路径
String realPath = servletContext.getRealPath(
"/WEB-INF/"
+fileName);
//创建输入流
InputStream inputStream=
new
FileInputStream(
new
File(realPath));
byte
[]body=
new
byte
[inputStream.available()];
inputStream.read(body);
MultiValueMap<String, String>headers=
new
HttpHeaders();
//设置头信息和字符集
fileName =
new
String(fileName.getBytes(
"gbk"
),
"iso8859-1"
);
headers.set(
"Content-Disposition"
,
"attachment;filename="
+fileName);
HttpStatus statusCode = HttpStatus.OK;
ResponseEntity<
byte
[]>responseEntity =
new
ResponseEntity<
byte
[]>(body, headers, statusCode);
return
responseEntity;
}
|
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:http://www.cnblogs.com/alternative/archive/2017/08/24/7424746.html 。
最后此篇关于SpringMVC实现文件上传和下载功能的文章就讲到这里了,如果你想了解更多关于SpringMVC实现文件上传和下载功能的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!