-1
這是該方法,我想從該方法獲取變量數據以在另一個端口中使用它。從特定端口獲取數據
public synchronized void serialEvent(SerialPortEvent oEvent) {
if (oEvent.getEventType() == SerialPortEvent.DATA_AVAILABLE) {
try {
int available = input.available();
byte chunk[] = new byte[available];
input.read(chunk, 0, available);
// Displayed results are codepage dependent
data =new String(chunk);
} catch (Exception e) {
System.err.println(e.toString());
}
}
}
請正確地提出你的問題。你面臨的問題是什麼?這是一個數據被其他線程/方法讀取的問題嗎? – user1428716 2013-02-20 22:00:40
此方法讀取我想在另一個類中使用的adata進行身份驗證等。 – 2013-02-21 00:46:03