Java-приложение NetBeans и Scala-приложение - PullRequest
0 голосов
/ 08 декабря 2010

У меня есть 2 проекта в netbeans, одно приложение j2me и одно приложение scala Я включил скомпилированный jar-файл приложения scala в качестве ресурса для приложения j2me.

Это результат:

Created dir: C:\Users\Para\Documents\NetBeansProjects\Barbut\build\compiled
Expanding: C:\Users\Para\Documents\NetBeansProjects\ScalaLogic\dist\ScalaLogic.jar into C:\Users\Para\Documents\NetBeansProjects\Barbut\build\compiled
do-compile:
Compiling 1 source file to C:\Users\Para\Documents\NetBeansProjects\Barbut\build\compiled
C:\Users\Para\Documents\NetBeansProjects\Barbut\build\compiled\MainLogic\Test.class: warning: Cannot find annotation method 'bytes()' in type 'scala.reflect.ScalaSignature': class file for scala.reflect.ScalaSignature not found
1 warning
post-compile:
compile:
pre-obfuscate:
proguard-init:
skip-obfuscation:
proguard:
post-obfuscate:
obfuscate:
lwuit-build:
pre-preverify:
do-preverify:
Created dir: C:\Users\Para\Documents\NetBeansProjects\Barbut\build\preverifysrc
Copying 2 files to C:\Users\Para\Documents\NetBeansProjects\Barbut\build\preverifysrc
Created dir: C:\Users\Para\Documents\NetBeansProjects\Barbut\build\preverified
Preverifying 2 file(s) into C:\Users\Para\Documents\NetBeansProjects\Barbut\build\preverified directory.
Error preverifying class MainLogic.Test
    java/lang/NoClassDefFoundError: scala/ScalaObject
C:\Users\Para\Documents\NetBeansProjects\Barbut\nbproject\build-impl.xml:472: Preverification failed with error code 1.
BUILD FAILED (total time: 9 seconds)

Кто-нибудь знает, что происходит не так? спасибо

Ответы [ 2 ]

0 голосов
/ 11 декабря 2010

@ thoredge Я попробовал это, и теперь я получаю новую ошибку

Compiling 1 source file to C:\Users\Para\Documents\NetBeansProjects\Barbut\build\compiled
C:\Users\Para\Documents\NetBeansProjects\Barbut\build\compiled\scala\reflect\ScalaSignature.class: warning: Cannot find annotation method 'value()' in type 'java.lang.annotation.Retention': class file for java.lang.annotation.Retention not found
An exception has occurred in the compiler (1.6.0_18). Please file a bug at the Java Developer Connection (http://java.sun.com/webapps/bugreport)  after checking the Bug Parade for duplicates. Include your program and the following diagnostic in your report.  Thank you.
com.sun.tools.javac.code.Symbol$CompletionFailure: class file for java.lang.annotation.RetentionPolicy not found
C:\Users\Para\Documents\NetBeansProjects\Barbut\nbproject\build-impl.xml:379: Compile failed; see the compiler error output for details.
BUILD FAILED (total time: 1 minute 2 seconds)

похоже, что это функция языка Java 5, которая требуется Scala, а виртуальная машина Java использует 1,4 или что-то подобное

Есть ли способ пройти это?

0 голосов
/ 09 декабря 2010

Вероятно, вам не хватает jar-библиотеки scala-библиотеки, так как от нее зависит jar-приложение scala. Класс scala / ScalaObject, для которого вы получаете NoClassDefFoundError, находится в этой библиотеке.

Вы можете скачать его здесь http://www.scala -lang.org / downloads . Убедитесь, что вы получили ту же версию, с которой было создано ваше приложение scala.

...