2011-03-01 43 views
3

我目前正在開發一個Android應用程序,我正在使用Netbeans 6.9.1和nbandroid 1.0測試版。我已經安裝了Android SDK和配置好了一切,但是當我創建一個簡單的項目,並嘗試建立它給出了一個錯誤NetBeans Android插件出錯

Creating output directories if needed... 
Created dir: C:\Documents and Settings\KeSoLK\My Documents\NetBeansProjects\AndroidApplication2\bin 
Created dir: C:\Documents and Settings\KeSoLK\My Documents\NetBeansProjects\AndroidApplication2\gen 
Created dir: C:\Documents and Settings\KeSoLK\My Documents\NetBeansProjects\AndroidApplication2\bin\classes 
Compiling aidl files into Java classes... 
Compiling RenderScript files into Java classes and RenderScript bytecode... 
Generating R.java/Manifest.java from the resources... 
compile: 
C:\Documents and Settings\KeSoLK\My Documents\Android\android-sdk-windows\tools\ant\main_rules.xml:384: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds 
Compiling 2 source files to C:\Documents and Settings\KeSoLK\My Documents\NetBeansProjects\AndroidApplication2\bin\classes 
Converting compiled files and external libraries into C:\Documents and Settings\KeSoLK\My Documents\NetBeansProjects\AndroidApplication2\bin\classes.dex... 
=C:\Documents was unexpected at this time. 
C:\Documents and Settings\KeSoLK\My Documents\Android\android-sdk-windows\tools\ant\main_rules.xml:472: The following error occurred while executing this line: 
C:\Documents and Settings\KeSoLK\My Documents\Android\android-sdk-windows\tools\ant\main_rules.xml:203: apply returned: 255 
BUILD FAILED (total time: 1 second) 

什麼可能是問題嗎?以及如何解決它。

謝謝!

+0

你在'Eclipse'中遇到什麼問題?嘗試'Eclipse' .. Android開發的最佳環境http://developer.android.com/sdk/eclipse-adt.html – 2011-03-01 10:08:12

回答

5

剛遇到同樣的問題。看來當時螞蟻試圖啓動dex.bat與參數進行相關路徑空間:

<exec executable="${dx}" failonerror="true"> 
      <arg value="--dex"/> 
      <arg value="--output=${basedir}/${intermediate.dex}"/> 
      <arg value="--positions=lines"/> 
      <arg path="${build.classes.dir}"/> 
</exec> 

該項目將無法運行,如果${basedir}${intermediate.dex}${build.classes.dir}包含空格。

批處理文件的參數必須用「...」封裝。但是當螞蟻啓動批處理文件時如何做到這一點?

我的快速解決方法是將我的netbeans android項目(不是所有項目)的文件夾移動到不包含空格的路徑。

0

確實這是Android SDK的'路徑空間'問題。

除此之外,我強烈建議您更新到NetBeans和NBAndroid插件的更新版本。