LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (May 2009, week 1)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Fri, 1 May 2009 06:24:05 -0700
Reply-To:   "Richard A. DeVenezia" <rdevenezia@WILDBLUE.NET>
Sender:   "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:   "Richard A. DeVenezia" <rdevenezia@WILDBLUE.NET>
Organization:   http://groups.google.com
Subject:   Re: SAS Java graph components
Comments:   To: sas-l@uga.edu
Content-Type:   text/plain; charset=ISO-8859-1

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


Back to: Top of message | Previous page | Main SAS-L page