示例#1
0
  public boolean open() throws IOException {
    if (!_isValid) return false;

    _is = _path.openRead();
    _is.skip(_offset);
    _index = 0;

    return true;
  }
示例#2
0
  public boolean next() throws IOException {
    if (_entries <= _index) return false;

    _index++;

    ReadStream is = _is;

    if (is.readInt() != 0x504b0102) {
      throw new IOException("illegal zip format");
    }

    is.skip(2 + 2 + 2 + 2 + 2 + 2 + 4);

    int compressedSize = readInt(is);
    int uncompressedSize = readInt(is);

    int nameLen = is.read() + (is.read() << 8);
    int extraLen = is.read() + (is.read() << 8);
    int commentLen = is.read() + (is.read() << 8);

    is.skip(2 + 2 + 4);

    _localFileOffset = readInt(is);

    _nameLen = nameLen;
    if (_cbuf.length < nameLen) _cbuf = new char[nameLen];

    char[] cbuf = _cbuf;

    int k = is.readUTF8ByByteLength(cbuf, 0, nameLen);

    for (int i = k - 1; i >= 0; i--) {
      char ch = cbuf[i];

      // win32 canonicalize
      if (ch == '\\') cbuf[i] = '/';
    }

    _name = null; // new String(cbuf, 0, k);

    if (extraLen + commentLen > 0) is.skip(extraLen + commentLen);

    return true;
  }
示例#3
0
  /**
   * Creates a new Jar.
   *
   * @param path canonical path
   */
  public ZipScanner(Path path) {
    try {
      _path = path;

      int length = (int) path.getLength();

      ReadStream is = path.openRead();

      try {
        // PACK200 is a standard comment, so try skipping it first
        is.skip(length - 22 - 7);

        if (is.read() != 0x50) {
          is.skip(6);

          if (is.read() != 0x50) return;
        }

        if (is.read() == 0x4b && is.read() == 0x05 && is.read() == 0x06) {
          _isValid = true;
        }

        if (_isValid) {
          is.skip(6);

          _entries = is.read() + (is.read() << 8);
          is.skip(4);

          _offset = readInt(is);
        }
      } finally {
        is.close();
      }
    } catch (Exception e) {
      log().log(Level.FINER, e.toString(), e);
    }
  }