我在Android手机上运行基准测试。基准测试包括GLBenchmark,Linpack,Quadrant和Caffeine。 如何将这些基准测试的结果存储到文件中。有什么办法吗?
感谢, 斯瓦米
答案 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