Package org.albite.io

Examples of org.albite.io.RandomReadingFile


   *
   * @exception IOException if a i/o error occured.
   */
  public void close() throws IOException
  {
    RandomReadingFile rrf = this.rrf;
    if (rrf == null)
      return;

    synchronized (rrf)
      {
  closed = true;
  entries = null;
  rrf.close();
      }
  }
View Full Code Here


    private ZipFile zip;

    public ArchiveZip(final String filename)
            throws IOException {

        this.file = new RandomReadingFile(filename);
        this.zip = new ZipFile(file);
    }
View Full Code Here

    public Dictionary(final String filename)
            throws DictionaryException {

        try {
            this.file = new RandomReadingFile(filename);
//        } catch (IOException e) {
        } catch (Exception e) {
            throw new DictionaryException(e.toString());
        }
View Full Code Here

TOP

Related Classes of org.albite.io.RandomReadingFile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.