- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在为移动设备创建一个 midlet。该 midlet 正在访问 com4 端口。我已经将 javax.comm 添加到 jre1.6.0、jre6 和 jdk1.6.0 文件夹(在 lib\ext 中)。
我的项目文件夹中名为 lib 的文件夹中还有 javax.comm.jar,并在构建路径中引用了它。
操作系统:Windows 7。
手机:中国移动。
IDE:安装了eclipseME1.8的eclipse。
当我在 Eclipse 中运行该项目时,出现以下错误:
java.lang.NoClassDefFoundError: MainMidlet: javax/comm/SerialPortEventListener
at com.sun.midp.midlet.MIDletState.createMIDlet(+29)
at com.sun.midp.midlet.Scheduler.schedule(+52)
at com.sun.midp.main.Main.runLocalClass(+28)
at com.sun.midp.main.Main.main(+80)
我知道 javax.comm 在 64x Windows 上不起作用,但为什么当我在设备中安装 jar 时它不起作用?没有错误消息,或者只是这样:“jar 文件已终止。”
所以我去谷歌搜索答案,找到了适用于 Windows x86 和 x64 的 txrx,但我不知道这是否适用于移动设备中的 Midlet。因为他们已经为Windows提供了这一点。那么我该如何解决这个问题呢?这里是 midlet 类代码,仅供记录:
import javax.microedition.lcdui.*;
import javax.microedition.midlet.MIDlet;
import javax.microedition.midlet.MIDletStateChangeException;
import javax.comm.*;
import java.util.*;
import java.io.*;
public class MainMidlet extends MIDlet implements CommandListener,
SerialPortEventListener {
// displaying this midlet
private Display display;
private Form form;
private StringItem stringItem;
private Command exitCommand;
// serial vars
private CommPortIdentifier portId;
private Enumeration portList;
private InputStream inputStream;
private SerialPort serialPort;
private Thread readThread;
public MainMidlet() {
portList = CommPortIdentifier.getPortIdentifiers();
while (portList.hasMoreElements()) {
portId = (CommPortIdentifier) portList.nextElement();
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
if (portId.getName().equals("COM4")) {
this.AttachToCom();
}
}
}
}
protected void destroyApp(boolean arg0) throws MIDletStateChangeException {
// TODO Auto-generated method stub
}
protected void pauseApp() {
// TODO Auto-generated method stub
}
public void commandAction(Command command, Displayable displayable) {
if (displayable == form) {
if (command == exitCommand) {
exitMIDlet();
}
}
}
public void startApp() {
stringItem = new StringItem("Hello", "Serial app is running!");
form = new Form(null, new Item[] { stringItem });
exitCommand = new Command("Exit", Command.EXIT, 1);
form.addCommand(exitCommand);
form.setCommandListener(this);
display = Display.getDisplay(this);
display.setCurrent(form);
}
public void exitMIDlet() {
display.setCurrent(null);
notifyDestroyed();
}
public void serialEvent(SerialPortEvent ev) {
print("serialEvent is called.");
switch (ev.getEventType()) {
case SerialPortEvent.BI:
case SerialPortEvent.OE:
case SerialPortEvent.FE:
case SerialPortEvent.PE:
case SerialPortEvent.CD:
case SerialPortEvent.CTS:
case SerialPortEvent.DSR:
case SerialPortEvent.RI:
case SerialPortEvent.OUTPUT_BUFFER_EMPTY:
break;
case SerialPortEvent.DATA_AVAILABLE:
byte[] readBuffer = new byte[20];
try {
while (inputStream.available() > 0) {
inputStream.read(readBuffer);
}
print(new String(readBuffer));
} catch (IOException e) {
print(e.getMessage());
}
break;
}
}
private void AttachToCom() {
try {
serialPort = (SerialPort) portId.open("MyProject", 2000);
} catch (PortInUseException e) {
print(e.getMessage());
}
try {
inputStream = serialPort.getInputStream();
} catch (IOException e) {
print(e.getMessage());
}
try {
serialPort.addEventListener(this);
} catch (TooManyListenersException e) {
print(e.getMessage());
}
serialPort.notifyOnDataAvailable(true);
try {
serialPort.setSerialPortParams(9600, SerialPort.DATABITS_8,
SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
} catch (UnsupportedCommOperationException e) {
print(e.getMessage());
}
readThread = new Thread((Runnable) this);
readThread.start();
}
private void print(String str) {
form.append(str + "\r\n");
}
}
还有一件事,接口(interface) SerialPortEventListener 继承自 java.util.EventListener,而我的 java.util 包没有。基本上,我将 java.util 和 java.io 不需要的任何内容添加到 src 文件夹中,并将每个内容添加到单独的文件(和包)中。它们在这里:
//the file is named EventListener.java and in a package named java.util
package java.util;
/**
* A tagging interface that all event listener interfaces must extend.
* @since JDK1.1
*/
public interface EventListener {
}
//the file is named EventObject.java and in a package named java.util
//removed the comment to minimize this post
package java.util;
// removed the comment to minimize this post
public class EventObject implements java.io.Serializable {
private static final long serialVersionUID = 5516075349620653480L;
// The object on which the Event initially occurred.
protected transient Object source;
// removed the comment to minimize this post
public EventObject(Object source) {
if (source == null)
throw new IllegalArgumentException("null source");
this.source = source;
}
// removed the comment to minimize this post
public Object getSource() {
return source;
}
public String toString() {
return getClass().getName() + "[source=" + source + "]";
}
}
// the file is named TooManyEventListenersException.java and in a package named java.util
// removed comment to reduce this post size
package java.util;
// removed comment to reduce this post size
public class TooManyListenersException extends Exception {
// removed comment to reduce this post size
public TooManyListenersException() {
super();
}
// removed comment to reduce this post size
public TooManyListenersException(String s) {
super(s);
}
}
// in the file named Serializable.java and in a package java.io
package java.io;
public interface Serializable {
}
最佳答案
您在移动端使用了错误的 API - 这就是为什么您会遇到所有这些 NoClassDefFoundError 消息以及 java.util 中其他缺失内容的原因。
在 MIDP (JSR 118) 设备上应该使用 javax.microedition.io .CommConnection API通过串口进行通信。
关于javax.comm 以及如何修复 java.lang.NoClassDefFoundError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9061744/
我一直在尝试在我的代码中使用 Jar 文件作为库,并且它编译得很好。但是,在运行时,我不断收到 NoClassDefFoundError信息。为什么会这样?我也在编译路径和运行时路径中包含了 Jar
关于Apache-Kafka messaging queue . 我已经从 Kafka 下载页面下载了 Apache Kafka。我已将其提取到 /opt/apache/installed/kafka
我正在尝试使用 Apache DefaultHttpClient 来执行 JSON POST 请求,当我尝试实例化它时它给我一个 NoClassDefFound 错误。 HttpClient clie
当我在模拟器(Nexus One API 22)上测试我的应用程序时,它运行顺利,没有失败。然而,当我在自己的个人手机(三星 Galaxy S5,Android 版本 5.0)上测试该应用程序时,它崩
我需要在python中使用java代码来减少,所以我选择了Jython。一段时间后,我设法弄清楚了如何运行我的代码,但我遇到了最奇怪的事情。当我写作时 from vohmm.corpus import
这是我的mybatis配置。这是我的pom.xml。。当我运行项目时,它显示了错误的原因:org/mybatis/spring/mapper/MapperScannerConfigurer.有没有人能
所以我正在尝试构建一个简单的gradle应用,当我运行它时, geb.ConfigurationLoader$UnableToLoadException: Unable to load configu
假设我有一个主类应用程序,它使用 URLClassLoader 加载子目录 plugins 中的所有 jar: public class App(){ public static void m
我在尝试运行 Netbeans (7.2) 时遇到一个反复出现的错误,上次遇到它时,我发现某个地方可以将所有文件移动到一个新项目。这可能会奏效,但我的项目的规模让这很麻烦。这是踪迹... Except
这个问题已经有答案了: Including all the jars in a directory within the Java classpath (25 个回答) 已关闭 6 年前。 我得到一个
在这里,我正在下载网页源代码,然后将其存储在文本文件中。然后我读取该文件并将其与正则表达式匹配以搜索特定字符串。 没有编译器错误。 Exception in thread "main" java.la
我正在一个“大”的 Maven/Java 项目中工作,无法理解运行应用程序时遇到的错误(它编译正常)。我得到的错误代码是: java.lang.NoClassDefFoundError: Could
对于学校的作业,我需要创建一个类 Blender 来实现一些预定义的东西。我收到了一个 JAR 文件 imagecompositor.jar,它可以完成所有操作并使用 Blender 类。 JAR 文
我遇到了一个问题,即抛出 NoClasDefFoundError。这让我感到困惑,因为我正在使用接口(interface),并且没有类定义应该可用。我已经阅读了一些指向类路径的帖子,但我不认为这是这里
我正在使用 hibernate,在使用 hibernate Connection 时出现如下错误 java.lang.NoClassDefFoundError: Could not initializ
我有一个使用 SubVersion 的 Android 项目。我使用 Subclipse 将项目导入我的 Eclipse Wordspace。 现在我有一个问题: java.lang.NoClass
我需要编译一个外部 java 文件(比如 a.java)。这是我为此编写的代码。 (字符串路径包含java和class文件的路径) command[0] = "javac"; comm
我正在尝试运行一个基本的 Hibernate 程序。当我运行它时,出现以下错误 java.lang.NoClassDefFoundError: org/jboss/logging/BasicLogge
标题:Eclipse插件开发由于java.lang.NoClassDefFoundError无法实例化类: 试图构建一个 eclipse 插件,但遇到一些运行时错误.. 我知道这是由于代码所依赖的类文
我是新手,我无法让它工作......:/ 我的 build.sbt: val apacheDeps = Seq( "commons-validator" % "commons-validator"
我是一名优秀的程序员,十分优秀!