Using the My Oracle Support Portal (MOSC)

MOSC Banner

UnsatisfiedLinkError: frmjapi (Not found in java.library.path) on AIX

edited Jun 10, 2019 2:10PM in Using the My Oracle Support Portal (MOSC) 2 commentsAnswered ✓

Hello Everyone,

I have problem with my Java program when open an Oracle Form file

My java source code very easy below

package check;

import oracle.forms.jdapi.FormModule;

public class MyClass {

public static void main(String[] args) {

String fileName = "C:\\MyTemp\\test.fmb";

if (args != null && args.length > 0) {

fileName = args[0];

}

FormModule fmTBH = FormModule.open(fileName);

System.out.println(fmTBH.getAbsolutePath());

}

}

This code run normally on my machine (Window 10) but when I export this class and execute on AIX then met problem below

Exception in thread "main" java.lang.UnsatisfiedLinkError: frmjapi (Not found in java.library.path)

        at java.lang.ClassLoader.loadLibraryWithPath(ClassLoader.java:1348)

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center