How do I import jars into my java program?

前端 未结 13 1537
自闭症患者
自闭症患者 2021-01-04 12:52

I\'ve downloaded two jars. I want to import some of their contained classes. How do I do this?

It\'s for my algorithms class. I\'ve tried following the instructions

13条回答
  •  失恋的感觉
    2021-01-04 13:33

    Launch javac with the -classpath option. Or edit the CLASSPATH environment variable so that it contains the JAR with the classes you wish to use.

提交回复
热议问题