0

最初に、アンテナ ファイルのエクスポートでいくつかの問題に遭遇しました。

eclipseme-build.xml で同じことをしようとすると、エラーが発生します。

  [taskdef] Could not load definitions from resource antenna.properties. 
It could not be found.

BUILD FAILED
C:\Documents and Settings\...\eclipseme-build.xml:21: Problem: failed to create task or type wtkbuild`
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.

行は次のとおりです。

<target depends="-eclipseme-initialize" name="-eclipseme-build">
  <echo message="Building source files..."/>
  <wtkbuild destdir="${path.build.classes}" encoding="${src.encoding}" source="1.3" sourcepath="" srcdir="${project.root.Client}/res">
     <classpath refid="classpath.Client"/>
  </wtkbuild>
  <wtkbuild destdir="${path.build.classes}" encoding="${src.encoding}" source="1.3" sourcepath="" srcdir="${project.root.Client}/src">
     <classpath refid="classpath.Client"/>
  </wtkbuild>

ちなみに、「Midletクラスが見つかりません」と表示されるようになったので、エミュレーターで実行できるようにjarファイルを正常にエクスポートするには、どのような手順を実行する必要がありますか

4

1 に答える 1

0

この問題は、antバージョンを更新することで解決されました。

この問題に直面している場合は、最初にhttp://ant.apache.org/bindownload.cgiから新しいAntバージョンをダウンロードしてください。

次に、Eclipseに進みます。「Window」-「Prefereces」-「Ant」-「Runtime」antそこに、AntHomeボタンが表示されます。

于 2013-03-21T15:03:09.177 に答える