All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.nishadc.automationtestingframework.filehandling.FlatFileHandling Maven / Gradle / Ivy

package io.nishadc.automationtestingframework.filehandling;

//io packages
import java.io.FileReader;
import java.io.IOException;

import org.apache.logging.log4j.Logger;

import io.nishadc.automationtestingframework.filehandling.exceptions.FlatFileHandlingException;
import io.nishadc.automationtestingframework.logging.LoggerFactory;

import java.io.BufferedReader;
//logger


/**
* Class Name: FlatFileHelper
* Description: Provides an interface to work with flat files.
* @author Nishad Chayanakhawa<[email protected]> * */ public class FlatFileHandling { //logger private static final Logger logger=LoggerFactory.create(FlatFileHandling.class); private FlatFileHandling() { //Do Nothing. Class will never be instantiated. } /** * Method Name: getFileContents
* Description: Returns text content of flat file.
* @since v1.0.0 * @param fullFilePath full path to text file as {@link java.lang.String String} * @return File content as {@link java.lang.String String} * @throws FlatFileHandlingException in case of any issue while reading from flat file. */ public static String getFileContents(String fullFilePath) throws FlatFileHandlingException { FlatFileHandling.logger.debug("Reading flat file: {}",fullFilePath); StringBuilder contentBuilder=new StringBuilder(); try(BufferedReader bufferedReader=new BufferedReader(new FileReader(fullFilePath))) { String fileContentLine; while((fileContentLine=bufferedReader.readLine()) != null) { contentBuilder.append(fileContentLine).append("\n"); } return contentBuilder.toString(); } catch (IOException e) { FlatFileHandling.logger.error("Error accessing file: {}",fullFilePath,e); throw (FlatFileHandlingException)new FlatFileHandlingException(e.getMessage()).initCause(e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy