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