Hi, On Mon, 2006-05-15 at 09:39 +0200, John Knoop wrote: > Hi > > Thanks for your reply. > > Let's say I don't want to package my application in a jar file, but rather > just use the .class file from another java application. How would I do then?
if you just want to include .class file, it is the same, you need to references the directory / folder where it is reside using command line tool -classpath some_folder/ or -cp some_folder and if you do not want to package inside jar, you need to extract the jar file generated by batik to the folder you use to referencing in -cp or -classpath or depending on the environment you use, stand alone application or servlet, you need to configure the container environment to specify where the class file exists Regards Tonny Kohar -- Sketsa SVG Graphics Editor http://www.kiyut.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
