今天,把我的自己修改的TinyLine的demo分别在nokia3250,5700上测试,下面是测试结果:
由此看来,问题可以成出现的多线程的问题上。
继续研究,有了结果再写。
- 3250 在我的NOKIA3250上测试时,出现的现象是,点击运行,一点反应都没有。
- 5700 程序可以启动,并出现等待画面,然后就跳出一个"Error Internal Error"的Alert,接着就黑屏了。5700是s60 9.2的操作系统,在j2me方面,应该说比我的3250完善了一些。
/**
* The events dispatching thread run()
*/
public void run()
{
Thread currentThread = Thread.currentThread();
try
{
while (currentThread == thread)
{
eventQueue.handleEvent(eventQueue.getNextEvent());
}
}
catch (InterruptedException e)
{
return;
}
catch( Throwable thr)
{
thr.printStackTrace();
alertError("Internal Error");
}
}
* The events dispatching thread run()
*/
public void run()
{
Thread currentThread = Thread.currentThread();
try
{
while (currentThread == thread)
{
eventQueue.handleEvent(eventQueue.getNextEvent());
}
}
catch (InterruptedException e)
{
return;
}
catch( Throwable thr)
{
thr.printStackTrace();
alertError("Internal Error");
}
}
继续研究,有了结果再写。