/******************************************************************************* * gMix open source project - https://svs.informatik.uni-hamburg.de/gmix/ * Copyright (C) 2014 SVS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. *******************************************************************************/ package userGeneratedContent.testbedPlugIns.layerPlugIns.layer5application.httpPush_v0_001.helper; import java.io.BufferedReader; import java.io.File; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; /** * This class provides the ability to read data from a file * @author bash * */ public class FileReadHandler { private BufferedReader in; /** * Constructor * Generates a file with the name specified by the parameter * @param fileName */ public FileReadHandler(String fileName) { try { in = new BufferedReader(new FileReader(new File(fileName))); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } } /** * Read a line from the file * @return line a String */ public String readIn() { String zeile = null; try { zeile = in.readLine(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return zeile; } }