Java实现图片上传至服务器功能(FTP协议)
程序员文章站
2023-12-19 23:41:16
本文为大家分享了java实现图片上传至服务器功能的具体代码,供大家参考,具体内容如下
本案例实现图片上传功能分为两个步骤,分别为
(1)app用base64加密将...
本文为大家分享了java实现图片上传至服务器功能的具体代码,供大家参考,具体内容如下
本案例实现图片上传功能分为两个步骤,分别为
(1)app用base64加密将图片内容上传至服务器(http协议),在临时目录中先存储好图片;
(2)将服务器临时存储的图片用ftp协议上传至另一台专门用做存储图片的服务器;
/** * ftp 文件操作服务实现类 * */ @service public class ftpfileserviceimpl implements iftpfileservice { /**ftp 服务器*/ @value("${ptfserver}") private string server; /**ftp 用户名*/ @value("${ptfusername}") private string uname; /**ftp 密码*/ @value("${ptfpwd}") private string pwd; /**本地字符集编码*/ private static final string local_charset = "gbk"; /**ftp 服务器字符集编码*/ private static final string server_charset = "iso-8859-1"; /** * ftp 文件上传 */ @override public void ftpupload(file srcfile, string filename, string foldname) { ftpclient ftpclient = new ftpclient(); fileinputstream fis = null; string charset = local_charset; try { ftpclient.connect(server); ftpclient.login(uname, pwd); fis = new fileinputstream(srcfile); // 设置上传目录 ftpclient.changeworkingdirectory(foldname); ftpclient.setbuffersize(1024); ftpclient.enterlocalpassivemode(); if (ftpreply.ispositivecompletion(ftpclient.sendcommand("opts utf8", "on"))) { // 开启服务器对utf-8的支持,如果服务器支持就用utf-8编码,否则就使用本地编码(gbk). charset = "utf-8"; } ftpclient.setcontrolencoding(charset); filename = new string(filename.getbytes(charset),server_charset); // 设置文件类型(二进制) ftpclient.setfiletype(ftpclient.binary_file_type); ftpclient.storefile(filename, fis); } catch (ioexception e) { throw new ehospitalserviceexception(responsecode.response_common_error_code, "ftp客户端出错!", e); } finally { try { ftpclient.disconnect(); } catch (ioexception e) { throw new ehospitalserviceexception(responsecode.response_common_error_code, "关闭ftp连接发生异常!", e); } } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。