Hi,
I want to call a java class, which resides in a jar file, through SAS. Also while calling to the java class I want to provide runtime parameters.
Please let me know how this could be achieved.
I am referring below code to call java program but not sure where to provide jar file location.
data _null_;
* -- set length of variable to capture message ;
length message $ 200 ;
* -- initiate java object ;
declare javaobj jobj ("helloWorld");
* -- get message and clean up ;
jobj.callStringMethod('getMessage', message);
jobj.delete();
put message = ;
run;
You can add the location to the classpath in the jreoptions in the sas config file:
-jreoptions (-Djava.class.path= "c:\my java\classes\myclasses.jar";c:\java2\classes2\classes2.jar -oss600k)
Regards,
- Jan.
You can add the location to the classpath in the jreoptions in the sas config file:
-jreoptions (-Djava.class.path= "c:\my java\classes\myclasses.jar";c:\java2\classes2\classes2.jar -oss600k)
Regards,
- Jan.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.