Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4215230

getClass().getResourceAsStream().available() returns 1 for .jar(ed) files

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • None
    • 1.2.0
    • core-libs
    • x86
    • windows_nt



      Name: dbT83986 Date: 02/25/99


      /*
         This method works correctly if fileName is a file in the current
         directory. But bytes is always 1 if fileName is a file in a jar
      */


      public byte[] receiveBytes(String fileName) throws Exception {
        InputStream inputStream = null;
        byte[] data = null;
        try {
          inputStream = getClass().getResourceAsStream("/" + fileName);

          int bytes = inputStream.available();
          data = new byte[bytes];
          inputStream.read(data);
          System.out.println("LoadFile.receiveBytes: fileName="+fileName+" user.dir="+System.getProperty("user.dir")+" bytes="+bytes);
        } finally {
          if(inputStream != null)
            inputStream.close();
        }
        return data;
      }
      (Review ID: 48227)
      ======================================================================

            Unassigned Unassigned
            dblairsunw Dave Blair (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: