0

How to connect to the project jar package for its class without any IDE, using only the command line? I'm going to connect the JNA to use external methods.

Destructor
  • 11
  • 2

1 Answers1

0
javac -cp lib\*; Sample.java
java -cp lib\*; Sample

Where folder "lib" contains jar library, "Sample" is main class

Destructor
  • 11
  • 2