|
On May 1, 12:27 am, gola...@GMAIL.COM (Murphy Choy) wrote:
> Hi to all,
>
> I am trying to get the java graphs using the SAS java API. However, I cannot
> seem to find the jar file containing the required files.
>
> Can anyone point me to the right place?
Are you using SAS AppDeV Studio or Base SAS ?
With AppDev Studio, the installer should have set up all your hooks.
With Base SAS, did you try DEVICE=JAVA ?
My understanding is that the sasgraph componentry (jars and classes
therein) are not licensed for general java use or for utilization by
external (non-SAS, non-SAS/Graph) generators {in-house scripts, 3rd
party, etc...}.
The componentry is located at the JAVA_CODEBASE value as found in
g.html.
ods listing close;
ods html file="%sysfunc(pathname(WORK))\g.html";
goptions device=java;
proc gplot data=sashelp.class;
plot age*weight;
run;
ods html close;
--
Richard A. DeVenezia
http://www.devenezia.com
|