ftp讀取圖片並轉Base64


 public String download(String ftpUrl,String sfzh){
        FTPClient ftpClient = new FTPClient();
        InputStream inputStream = null;
        String re=null;
        try {
            ftpClient.connect(ftp_ip,ftp_port);
            ftpClient.login(ftp_username, ftp_password);
            ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
            //是否成功登錄服務器
            int reply = ftpClient.getReplyCode();
            if (!FTPReply.isPositiveCompletion(reply)) {
                ftpClient.disconnect();
            }
            //跳轉到指定目錄
            ftpClient.changeWorkingDirectory(ftpUrl);
            //5.遍歷下載的目錄
            FTPFile[] fs = ftpClient.listFiles();
            for (FTPFile ff : fs){
                //解決中文亂碼問題,兩次解碼
                byte[] bytes=ff.getName().getBytes("iso-8859-1");
                String fileName=new String(bytes,"utf-8");
                if(sfzh.equals(fileName)){
                    inputStream = ftpClient.retrieveFileStream(fileName);
                }
            }

            if (inputStream != null) {
                byte[] data=null;
                data=new byte[inputStream.available()];
                BASE64Encoder encoder=new BASE64Encoder();
                re=encoder.encode(data);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }finally{
            if(ftpClient.isConnected()){
                try{
                    ftpClient.disconnect();
                }catch(IOException e){
                    e.printStackTrace();
                }
            }
            if(null != inputStream){
                try {
                    inputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }

        return re;
    }

  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM