Subject:Running Java file created from stylus studio from command line Author:david mcdonnell Date:03 Aug 2006 11:47 AM
Hi Im trying to convert a flat file to an xml file in windows xp using S STudio enterprise edtion. I have generated my Java code from SStudio and it Compliles and runs the java file grand and converts the data into XML. I have set up the environment variables in win XP and moved my files .xquery, .java and .xml into the same folder. I can complile the java file fine. But when i want to execute the java file via command line e.g. c:\> java conversion
i get an error, exception in thread "main", java.lang.NoClassDefFoundError : conversion
If you could help me with this issue asap I would be greatful.
Subject:Running Java file created from stylus studio from command line Author:Ivan Pedruzzi Date:03 Aug 2006 01:12 PM
The class called "conversion" is not in the classpath
Verify that the CLASSPATH env. variable includes the directory where conversion.class is located.
Subject:Running Java file created from stylus studio from command line Author:david mcdonnell Date:04 Aug 2006 05:04 AM
Cheers thanks. Also I want to output the xml data that is printed to the screen to an xml file. I cant seem to find where the output to the screen occurs.