Where to install the import modules used in a java program?

前端 未结 2 1871
孤街浪徒
孤街浪徒 2021-01-26 09:46

For a program the import headers are showing errors. From where can i download the importing packages? The import instance of the program is shown below..

packag         


        
2条回答
  •  走了就别回头了
    2021-01-26 10:11

    Most of those classes are available in JSE, but it looks like it's also using JMF. You can download JMF from here: JMF Download

    You don't install modules, you just add jars/classes to the classpath. How you do that depends on if you are using an IDE or not. This article can give you some insight on how things work: PATH and CLASSPATH

提交回复
热议问题