1\ for (Object object : jsonArray) {
2\ Thread.currentThread().sleep(1000);
3\ list.add(((JSONObject)object).get("Name"));
4\ }
此處的停頓 適用於邏輯代碼和循環 1000的單位爲毫秒
停頓後提示一個未處理的異常
此時須要異常處理
1\ //拋出異常
2\ throws InterruptedException
3\ //或者try catch操做
4\ try {
5\ Thread.currentThread().sleep(1000);
6\ } catch (InterruptedException e) {
7\ e.printStackTrace();
8\ }
9\ ---------------------
做者:超級鴻
來源:CSDN
原文:https://blog.csdn.net/weixin_40195422/article/details/84789856
版權聲明:本文爲博主原創文章,轉載請附上博文連接!json