android中获取某段程序的执行时间
Posted 鸭子船长
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android中获取某段程序的执行时间相关的知识,希望对你有一定的参考价值。
Date startDate = new Date(System.currentTimeMillis());
在收到设备返回数据之后添加如下语句:
Date endDate = new Date(System.currentTimeMillis());
long diff = endDate.getTime() - startDate.getTime();
然后在文本框中显示出来:
String sDiff = String.valueOf(AmoComActivity.Diff);
((TextView) findViewById(R.id.edit_text)).setText(sDiff);
以上是关于android中获取某段程序的执行时间的主要内容,如果未能解决你的问题,请参考以下文章