Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的java项目的设置
我正在尝试通过 cmd 运行 wsgen:
wsgen -keep -cp . com.library.webservice.HelloWorldImplementation
但我得到了错误
Class not found: "com.library.webservice.HelloWorldImplementation"
此外,该命令从C:\ ... \WebServices Test\src
C:\ ... \WebServices Test\src
知道我做错了什么吗?
C:\ ... \WebServices Test\src包含 Java 源文件,而不是类文件。通过指定的类路径-cp应该指向包含已编译类的目录,通常是bin文件夹。因此,您应该从该目录运行命令。
-cp
bin