Uses of Class
uk.org.ogsadai.common.files.DAIFileReadIOException

Packages that use DAIFileReadIOException
uk.org.ogsadai.activity.indexedfiles Activities for indexing and searching text files using the Apache Lucene search engine. 
uk.org.ogsadai.activity.xmldb Contains activity implementations for performing various operations on XML databases. 
uk.org.ogsadai.common.files This package provides a set of common classes for file manipulation. 
 

Uses of DAIFileReadIOException in uk.org.ogsadai.activity.indexedfiles
 

Methods in uk.org.ogsadai.activity.indexedfiles that throw DAIFileReadIOException
private  boolean FileReadingActivity.readFromTextFile()
          Reads one line from a text file mLength is the remaining number of lines to read
private  int FileReadingActivity.readFromBinaryFile()
          Reads a block of bytes from a file (at most mLength bytes), and puts it into the output stream
 

Uses of DAIFileReadIOException in uk.org.ogsadai.activity.xmldb
 

Methods in uk.org.ogsadai.activity.xmldb that throw DAIFileReadIOException
static void XMLDBUtilities.addResource(java.lang.String url, java.io.File file)
          Adds the new resource at the specified location to the specified collection.
 

Uses of DAIFileReadIOException in uk.org.ogsadai.common.files
 

Methods in uk.org.ogsadai.common.files that throw DAIFileReadIOException
static java.lang.String FileUtilities.readStringFromFile(java.lang.String fileName)
          Reads the contents of a file into a string.
static byte[] FileUtilities.readByteArrayFromFile(java.lang.String fileName)
          Reads the contents of a file into a byte array.
static java.io.InputStream FileUtilities.openStreamFromFile(java.lang.String fileName)
          Open an InputStream for a file.
static void FileUtilities.closeStreamFromFile(java.lang.String fileName, java.io.InputStream fileDataStream)
          Close an InputStream for a file.
static void FileUtilities.replaceTokensInDirectory(java.io.File dir, java.util.Map tokensAndValues)
          Replaces all occurrences of token regular expressions in each file in the specified directory with the corresponding value strings.
static void FileUtilities.replaceTokensInFile(java.io.File file, java.util.Map tokensAndValues)
          Replaces all occurrences of token regular expressions in a file with the corresponding value strings.
static void FileUtilities.copyFile(java.io.File sourceFile, java.io.File destinationFile)
          Copies the source file to the destination file.
static void FileUtilities.copyDirectoryContents(java.io.File sourceDir, java.io.File destinationDir)
          Copies the contents of the source directory to the destination directory.
static void FileUtilities.isFileReadable(java.io.File file)
          A utility method to test whether a file is readable.