Error - Could not find or load main class

后端 未结 4 1339
南笙
南笙 2021-01-29 07:27

I want to connect my java program to connect with database and retrieve the data. its compile perfectly but runtime im getting this Error : Could not find or load main cla

4条回答
  •  日久生厌
    2021-01-29 08:30

    The class named in the manifest Main-class entry doesn't exist in your JAR file, or possibly there is no Main-class: entry in the manifest.

    You haven't needed to call Class.forName() for about seven years, and you needs rendered to call newInstance() after that.

提交回复
热议问题