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

Error using System.loadLibrary("SomeLib") with try/catch

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P3 P3
    • None
    • 1.1.2
    • tools
    • None
    • x86
    • windows_95



      Name: mc57594 Date: 06/04/97



      The enclosed file, attempting to load a native library, trapping the
      exception, in a class initializer, generates a compiler message ("please
      file a bug report") in JDK 1.1.2D.
      Removing the exception handler allows it to compile.

      public class TestBug
          {
      // note whether native library has already been loaded
      private static boolean isLibLoaded = false;
      {
      try {
      System.loadLibrary("SomeLib");
      isLibLoaded = true;
      }
      catch (UnsatisfiedLinkError e) {
      System.err.println("Unable to load native library");
      }
      }

          public TestBug() {
           }
          }
      ======================================================================

            dstoutamsunw David Stoutamire (Inactive)
            mchamnessunw Mark Chamness (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: