【问题标题】:How to list the FTP files of a directory only having txt extension using java?java - 如何使用java列出仅具有txt扩展名的目录的FTP文件?
【发布时间】:2016-02-09 06:12:51
【问题描述】:

我的 ftp 服务器目录中有许多扩展名为 .txt 的 FTP 文件。

现在我想使用 java 列出具有 .txt 扩展名的文件。

我试过.endsWith(.txt),但编译时错误显示为:

无法从 FTPFile 转换为字符串

谁能帮我实现这个目标?

以下是我的代码:

package com;

import java.io.File;
import edu.vt.middleware.crypt.io.TeePrintStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.PrintStream;
import java.net.ConnectException;
//import java.sql.Date;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;  
import javax.mail.MessagingException;
import javax.mail.internet.AddressException;  
import org.apache.commons.io.FileUtils;
import org.apache.commons.net.ftp.FTPFile;
import com.enterprisedt.net.ftp.FTPConnectMode;
import com.enterprisedt.net.ftp.FTPException;
import com.enterprisedt.net.ftp.FTPTransferType;
import com.enterprisedt.net.ftp.Protocol;
import com.enterprisedt.net.ftp.SecureFileTransferClient;
import java.io.File;
import java.io.FilenameFilter;
import edu.vt.middleware.crypt.io.TeePrintStream;

public class getFilesFTP
{
public static File dir=new File("D:/log_FTPCHECK");
 public static String logname="output.txt";
 public static File logfile=new File(dir,logname);
 public static StringBuffer sb=new StringBuffer();

public static void main(String args[]) throws 
SecurityException,FTPException, IOException,ConnectException, 
AddressException, MessagingException

{

sb.append("**********************************************************
************************************************************************
************************");
    sb.append("<p align=center><B><U>SCOPUS FILE UPLOAD CHECK AUTO 
GENERATED LOG REPORT</U></B></p>");
   sb.append("***************************************************
*******************************************************
************************************************"); 
String host="sftp-opsbank2.elsevier.com";
String username="tho-e";
String password="Tho5540b2E";
int count=0;
File Filename;;
Date FileDate;
String invalidfilename=".";
String filetype="";
//DateFormat dateFormat = new SimpleDateFormat("dd/mm/year");
//String date1="";
String Lastmodifieddata="";
Date todayDate;





     try{

         SimpleDateFormat dateformat=new SimpleDateFormat("yyyy/MM/dd");
         String timeStamp = 
dateformat.format(Calendar.getInstance().getTime());
        // System.out.println("I am executed2");
            System.out.println("Todays Date :"+timeStamp );
            sb.append(System.lineSeparator());
            sb.append("Todays Date :"+timeStamp );  
            sb.append(System.lineSeparator());
           // System.out.println("I am executed2");
            SecureFileTransferClient client=new 
SecureFileTransferClient();
client.getAdvancedFTPSettings().setConnectMode(FTPConnectMode.PASV);

            client.setRemoteHost(host);
            client.setUserName(username);
            client.setPassword(password);
            client.setProtocol(Protocol.SFTP);
            client.setRemotePort(22);

            client.setContentType(FTPTransferType.BINARY);
             sb.append(System.lineSeparator());
             System.out.println("connecting to sftp");
             sb.append(System.lineSeparator());
            sb.append("connecting to sftp");
             sb.append(System.lineSeparator());
            client.connect();
            System.out.println("SFTP Connection established  
 successfully...");
            sb.append(System.lineSeparator());
            sb.append("SFTP Connection established successfully...");
            sb.append(System.lineSeparator());

            String path1="/sftp/content-providers/tho-e/data/incoming   
/scopusbk";
            com.enterprisedt.net.ftp.FTPFile[] directroy =    
client.directoryList(path1);
            System.out.println("Total Number of Files Found 
:"+directroy.length);
            sb.append(System.lineSeparator());
            sb.append("Total Number of Files Found :"+directroy.length);
            sb.append(System.lineSeparator());
            int x=0;

            for (int i = 0; i < directroy.length; i++) 
            {
                //System.out.println("entered in for loop");
                Filename= new File(directroy[i].getName());
                FileDate=(Date) directroy[i].lastModified();
                //Filetype=getFileExtension(Filename);
            //  System.out.println("Name:"+Filename);

Lastmodifieddata=dateformat.format(directroy[i].lastModified());

                if(timeStamp.equalsIgnoreCase(Lastmodifieddata)  )


                {   
                    if (((String) directroy[i]).endsWith("txt"))
                    {

                System.out.println("File Name:"+Filename +" ||Last    
 Modified : "+Lastmodifieddata);
                 sb.append(System.lineSeparator());
                sb.append("File Name:"+Filename +" ||Last Modified : 
"+Lastmodifieddata);
                 sb.append(System.lineSeparator());
                //System.out.println();


                // String path1="/sftp/suppliers/thomdi/signals
/ContentCAR";
                // com.enterprisedt.net.ftp.FTPFile[] directroy = 
client.directoryList(path1);
                count++;
                    }
            }

                else
                {
                    //System.out.println("No todays files");
                }
     }
            System.out.println("Total Number of file :"+count);
            sb.append(System.lineSeparator());
            sb.append("Total Number of file :"+count);
            sb.append(System.lineSeparator());
          //  PrintStream out = new PrintStream(new 
FileOutputStream("D:/output.txt"));
          //  System.setOut(out);
            if(!logfile.exists())
            {
            logfile.createNewFile();
            }

            FileUtils.writeStringToFile(logfile,sb.toString());
            FTPMailer.sendmailFTP();

            count=0;


     }
     catch(SecurityException se)
     {
         System.out.println("This belongs to security exception");
         sb.append(System.lineSeparator());
         sb.append("This belongs to security exception");
         sb.append(System.lineSeparator());
         se.printStackTrace();

     }
     catch(ConnectException ce)
     {
         System.out.println("Unable to Reach FTP Server..");
         System.out.println("Check the Internet Connectivity");
         sb.append(System.lineSeparator());
         sb.append("Unable to Reach FTP Server..");
         sb.append(System.lineSeparator());
         sb.append("Check the Internet Connectivity");
         sb.append(System.lineSeparator());
     }

}
}

【问题讨论】:

  • if ((directroy[i]).getName().endsWith("txt")).
  • 这里directroyFTPFile类型的数组。
  • 谢谢 satya。它工作正常。
  • 你太快了..太棒了..

标签: java file ftp


【解决方案1】:

改变

if (((String) directroy[i]).endsWith("txt"))

if ((directroy[i]).getName().endsWith("txt"))

编辑:

long size = directroy[i].getSize();//get file size

long getSize():以字节为单位获取文件大小。

【讨论】:

  • 您能否建议如何获取上述相同问题的 FTP 文件大小?我试过 filesize=directroy[i].getName().getBytes();
  • 但它给出的结果为:字节大小:[B@14340bb
  • 但我需要 5kb,10kb 这样的而不是 [B@14340bb
  • getBytes()directroy[i].getName() 返回字符串结果的字节数。但不是文件大小。
  • 谢谢。它适用于 long size = directroy[i].size();
猜你喜欢
  • 1970-01-01
  • 2020-06-28
  • 1970-01-01
  • 2012-02-24
  • 1970-01-01
  • 2013-09-20
  • 1970-01-01
  • 2019-05-21
  • 2018-04-27
相关资源
最近更新 更多