ScheduledThreadPoolExecutor exec = new ScheduledThreadPoolExecutor(1);
exec.schedule(new Runnable() {
public void run() {
try {
initTree();
} catch (EASBizException e) {
e.printStackTrace();
} catch (BOSException e) {
e.printStackTrace();
} catch (SQLException e) {
e.printStackTrace();
}
}
},500,TimeUnit.MILLISECONDS);
EAS 如何打开一个界面需要进行很多的UI操作,可以考虑多线程
最新推荐文章于 2021-07-02 11:00:58 发布