尽管我曾经使用过C#和Visual Studio,但我以前从未用Java或Eclipse编程过。

我正在尝试开始Java开发,并开发2D游戏,但是我无法启动该项目。我在这里遵循了教程:
http://cloningtheclassics.com/getting-started-with-pulpcore/
我已至少重试了5次该教程,但仍然无法正常工作。

The error it displays is:

Buildfile: C:\workspace\javapulp\project\build.xml
  [taskdef] Could not load definitions from resource tasks.properties. It could not be found.
  [taskdef] Could not load definitions from resource tasks.properties. It could not be found.
-init:

BUILD FAILED
C:\workspace\javapulp\project\build.xml:127: Required file not found: ../../build/pulpcore-applet-debug-0.11.jar

Total time: 1 second


提前致谢!

编辑:我发现http://groups.google.com/group/pulpcore/web/pulpcore-templates-build-xml-eric-berry
我该如何运行?我该怎么办?

最佳答案

第一个问题是找不到您的tasks.properties文件。
第二个问题与../../build/pulpcore-applet-debug-0.11.jarpulpcore-applet-debug-0.11.jar should be copied in c:\workspace\library\pulpcore 0.11.3“目录有关。
(这是您仔细检查的关键部分)。
该(c:\workspace\library\pulpcore 0.11.3)是pulpcore.path文件中的build.xml属性。


这两个问题往往表明您确实通过选择template \ project文件夹下的build.xml来遵循ant configuration section,然后尝试对其进行配置。
我建议您用同一页中提到的sample build.xml替换它,仔细检查路径,看看该build.xml文件是否效果更好。

10-05 19:11