I would like to know how to use the command line to run the Java single-file-source code.
I know that I cannot refer to outside classes per rules.
But I saw an YouTube video. The author is able to use external JAR library when he runs single-file-source code.
See this YouTube video @ 6:00 minute https://www.youtube.com/watch?v=U7Rp9hq0_Zk
He types:
java -cp mysql-connector-java-8.0.19.jar Database.java
I don't know how the database really works. I'm not there yet.
But if you guys can show me a quick example, that would be great.
Thanks!
java -cp mysql-connector-java-8.0.19.jar Database.javais already an example. The point is that you can set the class path to a place where all your dependencies are (in their case, mysql-connector-java-8.0.19.jar). Basically, I'm really not sure what you don't understand. That video is a great example of how to use external libraries when running single source files.