RLPark 1.0.0
Reinforcement Learning Framework in Java

TextLogFile.java

Go to the documentation of this file.
00001 package zephyr.plugin.core.api.internal.logfiles;
00002 
00003 import java.io.BufferedReader;
00004 import java.io.FileInputStream;
00005 import java.io.IOException;
00006 import java.io.InputStreamReader;
00007 
00008 public class TextLogFile extends LogFile {
00009 
00010   public TextLogFile(String filepath) throws IOException {
00011     super(filepath);
00012   }
00013 
00014   @Override
00015   protected BufferedReader getReader(String filepath) throws IOException {
00016     FileInputStream finput = new FileInputStream(filepath);
00017     InputStreamReader inputStream = new InputStreamReader(finput);
00018     return new BufferedReader(inputStream);
00019   }
00020 }
 All Classes Namespaces Files Functions Variables Enumerations
Zephyr
RLPark