javax.comm и как исправить ошибку java.lang.NoClassDefFoundError - PullRequest
1 голос
/ 30 января 2012

Я создаю мидлет для мобильного телефона.Этот мидлет получает доступ к порту com4.Я уже добавил javax.comm в папки jre1.6.0, jre6 и jdk1.6.0 (в lib \ ext).

У меня также есть javax.comm.jar в папке с именем lib в папке моего проекта и ссылка на него в пути сборки.

os: windows 7.
mobile: china mobile.
IDE: eclipse с установленным eclipseME1.8.

, когда я запускаю проект в 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 окнах, но почему, когда я устанавливаю флягу в устройстве, это не работает?нет и сообщения об ошибке, только это: «файл jar прерван».
Так что я пошел в Google и искал ответ и нашел txrx для Windows x86 и x64, но я не знаю, работает ли это для мидлета вмобильное устройство.Так как они были предоставлены для окон.Так как мне обойти это?вот код класса мидлета только для записи:

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");
}
    }

Есть еще одна вещь, интерфейс 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 {
}

1 Ответ

1 голос
/ 30 января 2012

Вы используете неправильный API на мобильной стороне - поэтому вы застряли со всеми этими сообщениями NoClassDefFoundError и другими недостающими вещами в java.util.

На устройствах MIDP (JSR 118) следует использовать javax.microedition.io. API-интерфейс CommConnection для связи через последовательный порт.

...