如何将Android基准测试结果存储在文件中?

时间:2013-12-24 05:42:55

标签: android

我在Android手机上运行基准测试。基准测试包括GLBenchmark,Linpack,Quadrant和Caffeine。 如何将这些基准测试的结果存储到文件中。有什么办法吗?

感谢, 斯瓦米

1 个答案:

答案 0 :(得分:0)

您可以使用共享偏好设置:

SharedPreferences cartPref = getSharedPreferences("FILE_NAME", 0);//mode 0 means private
SharedPreferences.Editor editor = cartPref.edit();//create editor

editor.putInt("key_name", value);
editor.commit();//save the data
//to get the data
cartPref.getInt("key", -1); //-1 is the default value returned if nothing with the key "key" is found