This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class FileOperations { | |
| // some code here | |
| public String readFile(String filePath){ | |
| if(isPdfFile(filePath)){ | |
| return readPdfFile(filepath); | |
| } | |
| else if(isExcelFile(filePath)) { | |
| return readExcelFile(filePath); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class FileOperations { | |
| // some code here | |
| public String readPdfFile(String filePath) { | |
| // some code here | |
| return fileContent | |
| } | |
| } |
NewerOlder