JavaFTP下载⽂件以及编码问题⼩结
问题
之前在开发过程中,遇到了⼀点问题,我要访问⼀个FTP服务器去下载⽂件详细情况如下:
an access to1. 需要传⼊⼀个可能为中⽂的⽂件名;
2. 通过⽂件名去FTP上寻该⽂件;
3. FTP服务器的命名编码为“GBK”;
思路
1.通过GET⽅法直接将⽂件名负载URL后⾯,但需要通过转码;
2.在Java Controller中收到参数后,进⾏解码,解码为正常数据;
3.⽤正常数据再转码为GBK,到Service中去调⽤FTP即可
4.(因公司安全考虑,我们需要在另⼀个模块中调⽤FTP)通过rest接⼝将⽂件名传出,另⼀模块获取到⽂件流转换为byte[]传回,调⽤response输出即可
总结
编码问题的解决⽅案:
Jquery对URL以及参数转码,据我所了解的主要应⽤encodeURI、encodeURIComponent,例如我需要传⼊变量名为fileDepence
var downloadDepence=fileID+"-"+filename;
window.location.href=encodeURI(ajaxurl+"/coadownload/downloadFile?fileDepence="+encodeURIComponent(downloadDepence));
这样我在后台就可以接收到转码过后的fileDepence这个串,通过验证encodeURIComponent会以“utf-8”进⾏转码,所以我们使⽤Java对其解码:
String viewItem=java.URLDecoder.decode(fileDepence, "utf-8");
这样得到的viewItem就与我们原本要传⼊的值⼀致了,如果传⼊的为中⽂⽂件名,则此时viewItem便是对应的中⽂⽂件名了。
之后我⼜了解⼀下,通过JS来完成GBK的转码⽐较⿇烦,⽽采⽤Unicode的Java则⽐较⽅法,则同理,我们使⽤viewItem在以GBK来转⼀次码,就可以得到对应的FTP服务器中的⽂件名了。
String GBKItem= de(viewItem,"GBK");
FTP的解决⽅法
建⽴⼀个FTP连接的公⽤类
public static FtpClient connectFTP(String url, int port, String username, String password) {
//创建ftp
FtpClient ftp = null;
try {
//创建地址
SocketAddress addr = new InetSocketAddress(url, port);
//连接
ftp = ate();
//登陆
jquery下载文件请求ftp.login(username, CharArray());
php语言翻译ftp.setBinaryType();
} catch (FtpProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
logger.info("已登录到FTP服务器!" + new Date());
return ftp;
}barista
在另⼀个模块的Service中建⽴⼀个下载的⽅法,在rest接⼝访问的Controller中调⽤该⽅法。
public FileBtye downloadfilefromFTP(String fileDepence,HttpServletResponse response) throws IOException, FtpProtocolException {
FileBtye file=new FileBtye(); //FileBtye为⼀个只包含btye[]的对象,主要⽤于适合Controller的responsebody的json传出
response.setCharacterEncoding("utf-8");
place("\"", ""); //rest接⼝传输过来的值需要做⼀定的格式化处理
FtpClient ftpClient= tFTP(FTPHost, Integer.parseInt(FTPPort), FTPUserName, FTPPassWord); //通过properties⽂件读取
InputStream is = null;
ftpClient.changeDirectory("//filepath"); //⽂件⽬录
is = FileStream(fileDepence); //获取⽂件流
ByteArrayOutputStream swapStream = new ByteArrayOutputStream();
byte[] buff = new byte[100]; //buff⽤于存放循环读取的临时数据
int rc = 0;
while ((rc = is.read(buff, 0, 100)) > 0) {
swapStream.write(buff, 0, rc);
}
byte[] fileByte = ByteArray();
file.setFileinfo(fileByte);
is.close();
return file;
}
在本地Service中调⽤rest接⼝完成输出response输出即可,同时要注意response的设置
字符常量与字符串常量 String viewItem=java.URLDecoder.decode(fileDepence, "utf-8");
//FTP服务器命名规则以GBK编码
opacity词根String GBKItem= de(viewItem,"GBK");
//调⽤rest接⼝,拿到返回的FileBtye
FileBtye downloadStream=restTemplate.postForObject(gatewayRootUrl + GatewayUrlConstant.COA_DOWNLOAD + GatewayUrlConstant.DOWNLOAD_FILE, GBKItem, FileBtye.class);
if(downloadStream!=null){
//设置信息头
response.setCharacterEncoding("utf-8"); //设置编码
response.setContentType("multipart/form-data"); //根据⽂件确定⽂件格式
response.setHeader("Content-Disposition", "attachment;fileName=" + viewItem); //设置⽂件名
ServletOutputStream out;
//输出流输出
out = OutputStream();
out.Fileinfo());
out.flush();
out.close();
logger.info("下载⽂件成功" + new Date());
}else {
logger.info("下载⽂件不存在" + new Date());
}
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论