Ant构建错误,找不到文件夹

时间:2011-04-25 03:21:06

标签: java ant

这一行有错误吗?

<arg line="-cp ./bin -keep -s ./src -d ./bin com.myfirst.wsServer.SayHello"/>

因为eclipse控制台告诉:

Buildfile: C:\Documents and Settings\user\workspace\wsServerExample\src\build.xml
wsgen:
[exec] directory not found: .\src

1 个答案:

答案 0 :(得分:1)

您的错误消息表明您已经从./src/文件夹运行脚本,因此它无法找到您的src文件夹。

尝试使用路径,如果您在./src中或将build.xml移动到项目根文件夹,看看这是否有帮助。