Including jars in classpath on commandline (javac or apt)

前端 未结 6 1088
礼貌的吻别
礼貌的吻别 2020-11-22 05:44

trying to run this program. I think that to setup all of the web service stuff I need to run apt. (Although using javac I am having the same issue). I think what I am get

6条回答
  •  感情败类
    2020-11-22 06:36

    Note for Windows users, the jars should be separated by ; and not :.

    for example: javac -cp external_libs\lib1.jar;other\lib2.jar;

提交回复
热议问题