|
next
|
 Subject: Stylus Studio Converters command-line utility Author: Tony Lavinio Date: 18 Jul 2007 11:42 PM
|
There are several problems here with your syntax.
1. Please don't include your real activation codes in public posts.
We adjusted your message to remove them.
2. You either use the CSV converter or the .conv file for the Custom XML
Converter, not both at once. So the syntax would be either
java -cp Convert.jar;XMLConverters.jar Convert 12345-6789012345 toxml converter:CSV:sep=,:first=yes xyz.csv
or
java -cp Convert.jar;XMLConverters.jar Convert 12345-6789012345 toxml converter:file:///D:/data/KB/Kanisa/KMap/stylesheets/Evidences/convertevidence.conv xyz.csv
2a. Starting in 2007 Release 2, the adapter: scheme has been renamed to
converter:, although adapter: still works for the moment.
2b. It's safer to use URI syntax than filename syntax when dealing with web
technologies. So for filenames, use file:/// and forward slashes.
2c. You had "sep;," instead of "sep=,"
3. Wildcards aren't supported. Instead, use the CMD 'for' syntax, like this:
for %i in (*.csv) do java -cp .....
4. In order to run the converters from outside of Stylus Studio, you need a
valid converter license. You may be granted an evaluation of them, but they
are different product from Stylus Studio when used externally, and are
separately licensed. Contact stylusstudio@stylusstudio.com for details.
|
|
|
|