Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试使用 java.applet.Applet 时,出现运行时错误:
java.lang.NoClassDefFoundError: java.applet.Applet
我试图手动放置该库,但我得到了同样的错误。我对其他库也做过同样的事情,并且它有效,但对这个库没有。
当我尝试使用 java.applet.Applet 时,出现运行时错误
那是因为该类在 Android 中不存在。
我试图手动放置该库
java.applet.Applet是一类。它不是图书馆。
java.applet.Applet
如何在 Android 中使用 java.applet.Applet?
你没有。最有可能的是,您重写代码以使用 Android UI 框架,就像您拥有 Swing 或 SWT Java 桌面应用程序或 Java servlet 一样。