【发布时间】:2016-10-26 14:15:04
【问题描述】:
public static void main(String[] args) {
portList = CommPortIdentifier.getPortIdentifiers();
while (portList.hasMoreElements()) {
portId = (CommPortIdentifier) portList.nextElement();
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
if (portId.getName().equals("/dev/cu.usbserial-FTCC026H")) {
System.out.println("Connecting.....");
// if (portId.getName().equals("/dev/term/a")) {
ReadReadings reader = new ReadReadings();
}
}
}
}
public ReadReadings() {
try {
serialPort = (SerialPort) portId.open("ReadReadings", 1000);
} catch (PortInUseException e) {System.out.println(e);}
try {
inputStream = serialPort.getInputStream();
} catch (IOException e) {System.out.println(e);}
try {
serialPort.addEventListener(this);
} catch (TooManyListenersException e) {System.out.println(e);}
serialPort.notifyOnDataAvailable(true);
try {
serialPort.setSerialPortParams(9600,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
try {
inputStream = serialPort.getInputStream();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();serialPort.close();
}
br = new BufferedReader(new InputStreamReader(inputStream));
} catch (UnsupportedCommOperationException e) {System.out.println(e);}
readThread = new Thread(this);
readThread.start();
}
public void run() {
try {
Thread.sleep(10000);
if(inputStream != null)
{
serialPort.close();
try {
inputStream.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
serialPort.close();
ConnectToHardware.frame.dispose();
frame = new DisplayReadings();
//frame.pack();
frame.setVisible(true);
}
} catch (InterruptedException e) {System.out.println(e);serialPort.close();}
}
public void serialEvent(SerialPortEvent event) {
switch(event.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[1024];
// String temp = "";
try {
String inputLine=br.readLine();
series.put(num, inputLine);
num++;
System.out.println(inputLine);
}
catch (IOException e) {System.out.println(e);}
break;
}
}
}
我需要为我的项目创建可运行的 jar 文件,其中包括 3 个类、外部 rxtx 库和项目中的 librxtxSerial.jnilib。但是在创建可运行的 jar 文件时,此 librxtxSerial.jnilib 文件不包含在 jar 文件中。我认为这是运行 jar 文件时没有得到输出的原因。
【问题讨论】:
-
显示你的代码,否则 ppl 无能为力
-
我添加了我的代码但需要创建 jar 文件以便我可以在没有 IDE 的情况下运行。我正在使用日食。我希望双击 jar 文件可以运行我的程序。谢谢。它在 eclipse 中完美运行,但不能运行 jar 文件。
标签: java