一个使用Java读取串口的程序(二)

2014-11-23 20:27:43 · 作者: · 浏览: 22
try
{
wait();
} catch (InterruptedException e) { }
}
SepMark = Content.indexOf(*);
}

CurrentMsg = Content.substring(0, SepMark);
TempContent = Content.substring(SepMark+1);
Content = TempContent;
notifyAll();
return CurrentMsg;
}

public s