下载文件:
运行jersey-server, 不设置端口的情况下,默认为8080,springboot jar运行方式下默认端口为9000
在浏览器输入http://localhost:9000/download?fileFullName=E:/工具/FileZilla.rar
文件路径分割符号请用/替代\,下载服务器上指定路径的文件
上传文件:
运行两个工程,HttpClientPost,jersey-server
运行jersey-server工程,java -jar jersey-server-0.0.1-SNAPSHOT.jar
运行HttpClientPost工程,在cmd下执行r.bat r.bat里写上完整的上传文件的路径,如E:/工具/FileZilla.rar,文件路径分割符号请用/替代\
工程HttpClientPost里url设置访问jersey-server工程的链接
url=http://localhost:9000/uploadtest
工程jersey-server上传后保存的目录设置为D:\tmp
上传下载文件大小在工程jersey-server的配置文件application.properties里设置
1