You enable Language Environment (LE) support by using either the
INITCALL"mfleinit"
(Windows) or
INITCALL"COBMFLEINIT"
(UNIX)
Compiler directive, or by adding a call to
mfleinit (Windows) or
cobmfleinit
(UNIX)
in your code. The method used depends on how you intend to use the support.
Note: For UNIX environments, you must specify the INITCALL argument in upper case:
INITCALL"COBMFLEINIT".
Managed JVM
The Language Environment utilities are also available in managed code applications. To use them, include the
mfle370.jar file on the classpath.
- On Windows:
- For 32-bit environments use the
mfle370.jar file located at
%ProgramFiles(x86)%\Micro Focus\Visual COBOL\bin.
- For 64-bit environments you must use a 64-bit JVM. The
mfle370.jar file is located at
%ProgramFiles(x86)%\Micro Focus\Visual COBOL\bin64.
- On UNIX:
- For 32-bit environments use the
mfle370.jar file located at
$COBDIR/lib.
- For 64-bit environments you must use a 64-bit JVM. The
mfle370_64.jar file is located at
$COBDIR/lib.
In your JVM COBOL program, include the Compiler option ILUSING"com.microfocus.le370". For a Java program include the statement
import com.microfocus.le370.*;.
Enabling LE Support in an Eclipse Project
JVM COBOL
For JVM COBOL applications, add the
mfle370.jar file to the project JVM build path.
- Right-click the JVM COBOL project, and then click
Properties.
- Click
Micro Focus > JVM Build Path.
- Click the
Libraries tab.
- Click
Add External JARs.
- Navigate to the location of the
mfle370.jar file, and then click
Open.
- Click
OK.
- There are two ways to apply this to your application:
- In your code:
- Set the ILUSING directive with the
com.microfocus.le370 namespace.
- In your
Additional directives in the project properties:
- Click
Project > Properties > Micro Focus > Build Configuration.
- Type
ILUSING"com.microfocus.le370" in the
Additional directives field.
Java
For Java applications, add the
mfle370.jar,
mfcobol.jar and
mfcobolrts.jar files to the project build path.
- Right-click the Java project, and then click
Properties.
- Click
Java Build Path.
- Click the
Libraries tab.
- Click
Add External JARs.
- Navigate to the location of the
mfle370.jar file, and then click
Open.
- Repeat the previous two steps for the
mfcobol.jar and
mfcobolrts.jar files.
- Click
OK.
- In your code, add the import statement
import com.microfocus.le370.*;.