2015-09-06 59 views

回答

0

以及它應該不那麼難通過使用System.currentTimeMillis()之前和之後來檢查時間過去。

long start = System.currentTimeMillis(); 
/* do network operation */ 
long total = System.currentTimeMillis()-start; 
相關問題