org.cdgsoftware.icl.util
Class FileUtils

java.lang.Object
  extended by org.cdgsoftware.icl.util.FileUtils

public class FileUtils
extends java.lang.Object

The Class FileUtils.


Constructor Summary
FileUtils()
           
 
Method Summary
static java.io.BufferedReader getBufferedReaderFromFile(java.io.File src)
          BufferedReaders are really useful for reading files (or other streams for that matter) line by line.
static java.io.BufferedReader getBufferedReaderFromInputStream(java.io.InputStream src)
          BufferedReaders are really useful for reading files (or other streams for that matter) line by line.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

FileUtils

public FileUtils()
Method Detail

getBufferedReaderFromFile

public static java.io.BufferedReader getBufferedReaderFromFile(java.io.File src)
BufferedReaders are really useful for reading files (or other streams for that matter) line by line. This is a utility to get a reader from a file without having to muck up your code with all the new blah blah statements.

Parameters:
src - the src
Returns:
BufferedReader

getBufferedReaderFromInputStream

public static java.io.BufferedReader getBufferedReaderFromInputStream(java.io.InputStream src)
BufferedReaders are really useful for reading files (or other streams for that matter) line by line. This is a utility to get a reader from a file without having to muck up your code with all the new blah blah statements.

Parameters:
src - the src
Returns:
BufferedReader