I have a scenario where around 5600 files are present. I am able to retrieve the file names by using the below code:
 String path = "D:\\Projects worked upon\\ANZ\\Anz new\\Files\\329703588_20160328124733595\\Output"; String files;
        File folder = new File(path);
        File[] listOfFiles = folder.listFiles(); 
        for (int i = 0; i < listOfFiles.length; i++) 
        {
            if (listOfFiles[i].isFile()) 
         {
         files = listOfFiles[i].getName();
             if (files.toLowerCase().endsWith(".xml"))
             {
                System.out.println(files);
              }
, but i need only the first part For Eg:if the file name in folder is "abc_Transformed.xml" , i require only abc .. How to get it ?
 
     
    