Java Command Line
To transform a Line data into a PDF :
- Run Java command. This requires a
javaline2pdf.jar
file. - Set
CLASSPATH
to include the full path of the jar file.- For Windows:
set CLASSPATH=<directory>\javaline2pdf.jar;%CLASSPATH%
For example:
set CLASSPATH=C:\Line2pdf\javaline2pdf.jar;%CLASSPATH%
- For other operating systems:
export CLASSPATH=<directory>/javaline2pdf.jar;$CLASSPATH
For example:
export CLASSPATH=/Line2pdf/javaline2pdf.jar;$CLASSPATH
- Note:
- Setting CLASSPATH should be on a single line.
- For Windows: