Specify the Classpath

When using the JDK runtime environment, set the classpath using the -classpath option for the application. For example:
  • On Windows: java -classpath <complete-path-to-tools.jar>;%CLASSPATH% -jar myApp.jar
  • On Unix: java -Xbootclasspath/a:<complete-path-to-tools.jar> -jar myApp.jar