- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
解决了!这只是我手机的问题,与代码或android平台无关。
我在 Android 中遇到了一个关于 SharedPreferences 的奇怪问题。如果你能帮助我,我将不胜感激。
问题是,当我在 SharedPreferences 提交之前进行大量文件操作时,提交将花费很多时间,这将阻止我的 Activity 。这是测试,onResume 方法在 SharedPreferences 提交时被阻塞了几秒钟:
/*
* Only this method was modified in the new created test project,
* so there is nothing else can interfere with the results.
*/
protected void onResume()
{
super.onResume();
long s = System.currentTimeMillis();
deleteDatabase( "test.db" );
Log.d( "xw", "Step 1. At: " + (System.currentTimeMillis() - s) );
File dbFile = getDatabasePath( "test.db" );
Log.d( "xw", "Step 2. At: " + (System.currentTimeMillis() - s) );
dbFile.getParentFile().mkdir();
Log.d( "xw", "Step 3. At: " + (System.currentTimeMillis() - s) );
InputStream is = null;
OutputStream os = null;
try
{
dbFile.createNewFile();
AssetManager ass = getAssets();
is = ass.open( "db" + File.separator + "test.db", AssetManager.ACCESS_STREAMING );
os = new FileOutputStream( dbFile );
int bytesReaded;
byte[] buf = new byte[1024];
while ( (bytesReaded = is.read( buf )) != -1 )
os.write( buf, 0, bytesReaded );
Log.d( "xw", "DB prepared. At: " + (System.currentTimeMillis() - s) );
}
catch ( IOException e )
{
e.printStackTrace();
return;
}
finally
{
try
{
if ( is != null )
is.close();
if ( os != null )
os.close();
}
catch ( IOException e2 )
{
e2.printStackTrace();
}
}
Log.d( "xw", "End of file copying. At: " + (System.currentTimeMillis() - s) );
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences( MainActivity.this );
Log.d( "xw", "Before commit. At: " + (System.currentTimeMillis() - s) );
prefs.edit().putInt( "test", prefs.getInt( "test", -1 ) + 1 ).commit();
Log.d( "xw", "After commit. At: " + (System.currentTimeMillis() - s) );
Log.d( "xw", "===========================================" );
}
我尝试了几次测试,发现可能是繁重的文件操作导致的。结果(部分但典型)在这里:
// Only commit the SharedPreferences.
Before commit. At: 0
After commit. At: 26
===========================================
Before commit. At: 0
After commit. At: 15
===========================================
// Only copy a large file (31MB).
Step 1. At: 1
Step 2. At: 1
Step 3. At: 1
DB prepared. At: 1268
End of file copying. At: 1271
===========================================
Step 1. At: 44
Step 2. At: 44
Step 3. At: 44
DB prepared. At: 1159
End of file copying. At: 1162
===========================================
Step 1. At: 16698
Step 2. At: 16699
Step 3. At: 16700
DB prepared. At: 17943
End of file copying. At: 17946
===========================================
Step 1. At: 4285
Step 2. At: 4285
Step 3. At: 4286
DB prepared. At: 5472
End of file copying. At: 5474
===========================================
// Only copy a small file (900KB).
Step 1. At: 4
Step 2. At: 4
Step 3. At: 5
DB prepared. At: 44
End of file copying. At: 45
===========================================
Step 1. At: 1
Step 2. At: 1
Step 3. At: 2
DB prepared. At: 38
End of file copying. At: 38
===========================================
// Copy a large file (31MB) first and then commit the SharedPreferences.
Step 1. At: 0
Step 2. At: 0
Step 3. At: 3
DB prepared. At: 1292
End of file copying. At: 1294
Before commit. At: 1295
After commit. At: 24206
===========================================
Step 1. At: 67
Step 2. At: 67
Step 3. At: 68
DB prepared. At: 1521
End of file copying. At: 1522
Before commit. At: 1523
After commit. At: 13743
===========================================
Step 1. At: 3605
Step 2. At: 3606
Step 3. At: 3607
DB prepared. At: 4820
End of file copying. At: 4823
Before commit. At: 4823
After commit. At: 24229
===========================================
// Copy a small file (900KB) first and then cimmit the SharedPreferences.
Step 1. At: 4
Step 2. At: 5
Step 3. At: 5
DB prepared. At: 77
End of file copying. At: 78
Before commit. At: 78
After commit. At: 89
===========================================
Step 1. At: 6
Step 2. At: 6
Step 3. At: 6
DB prepared. At: 46
End of file copying. At: 46
Before commit. At: 47
After commit. At: 542
===========================================
Step 1. At: 4
Step 2. At: 5
Step 3. At: 6
DB prepared. At: 50
End of file copying. At: 50
Before commit. At: 51
After commit. At: 61
===========================================
我什至尝试一次复制一个文件两次(第一个日志和第二个日志以“-------”分隔):
// Copy a large file (31MB) for twice at once.
Step 1. At: 1
Step 2. At: 2
Step 3. At: 2
DB prepared. At: 1475
End of file copying. At: 1477
-------------------------------------------
Step 1. At: 1
Step 2. At: 1
Step 3. At: 1
DB prepared. At: 1126
End of file copying. At: 1129
===========================================
Step 1. At: 50
Step 2. At: 51
Step 3. At: 51
DB prepared. At: 1256
End of file copying. At: 1258
-------------------------------------------
Step 1. At: 15098
Step 2. At: 15099
Step 3. At: 15099
DB prepared. At: 16245
End of file copying. At: 16249
===========================================
Step 1. At: 8073
Step 2. At: 8079
Step 3. At: 8083
DB prepared. At: 9268
End of file copying. At: 9271
-------------------------------------------
Step 1. At: 2995
Step 2. At: 2996
Step 3. At: 2997
DB prepared. At: 4183
End of file copying. At: 4186
===========================================
// Copy a small file (900KB) for twice at once.
Step 1. At: 1
Step 2. At: 1
Step 3. At: 1
DB prepared. At: 33
End of file copying. At: 34
-------------------------------------------
Step 1. At: 1
Step 2. At: 1
Step 3. At: 2
DB prepared. At: 32
End of file copying. At: 33
===========================================
Step 1. At: 2
Step 2. At: 2
Step 3. At: 2
DB prepared. At: 43
End of file copying. At: 43
-------------------------------------------
Step 1. At: 1
Step 2. At: 2
Step 3. At: 2
DB prepared. At: 45
End of file copying. At: 47
===========================================
如果我将 SharedPreferences 的操作放在文件操作之前,可能文件操作也会被阻止。此外,在我的应用程序中,虽然数据库已准备就绪(已复制到应有的位置并且 IO 流已关闭),但当 SharedPreferences 的提交被阻止时,无法从中获取数据。
看来大文件的文件copy真的很不稳定,很难理解。
我花了很多时间来解决这个问题,但仍然不知道。真的需要你的帮助! 3Q~
最佳答案
关于android - 为什么文件操作会阻止 SharedPreferences 的提交,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20608586/
假设我有一个带有隐藏提交按钮的表单,我在其中输入值,然后我点击一个按钮,就会出现带有确认消息和确认按钮的对话框。当我单击“确认”按钮时,我还单击了表单中隐藏的提交按钮。这可能吗?我如何在 JQuery
我们正在学习 Git 并使用 GitHub 作为我们的托管站点。 我们都 fork upstream repo 并 PR 我们的提交到 upstream 以获取我们的更改。 我们正在努力学习如何压缩我
我只需要一些关于这段代码的帮助。 var prv3; var markIt3 = function(e) { if (prv3 === this && this.checked) { th
如果 1 个表单使用“GET”方法而另一个使用“POST”方法,我如何提交位于同一页面上的 2 个表单。每个表单都有相同的操作并转到相同的下一页。需要帮忙。感谢大家的帮助。 我怎样才能得到下面这两个使
您好,我的表单中有以下脚本 function pdf() { var frm = document.getElementById("form1"); frm.action = "http://www.
我有一个 iOS 胖静态库(iphoneos 和 iphonesimulator),如果我在应用程序提交期间使用它,它会因为二进制文件包含 iphonesimulator 代码而失败吗? 最佳答案 我
我似乎有一个卡住的 git repo。它卡在所有基本的添加、提交命令上,git push 返回所有内容为最新的。 从其他帖子我已经完成了 git gc 和 git fsck/ 我认为基本的调试步骤是
我正在尝试发送由 jquery 创建的表单。该表单附加到一个 div 中,下面的变量“data”是使用 php 创建的,我将只发布最重要的 js 代码。 我尝试了很多带有和不带有“on()”的操作,但
我面临一个简单的问题,但不知道如何解决。我正在使用 twitter bootstrap 的标签。选项卡有效,但每个选项卡中的表单不提交。表单在没有选项卡的情况下提交。 以下是我用于标签的链接
我的计算机上有 140 个 git 存储库,每周我可以处理其中 10-15 个。有没有办法知道是否忘记提交/推送我的一个项目? 这些存储库都位于同一位置:“C:/Projects”。 输出类似于 C:
我对 javascript 完全陌生,目前正在开发我的第一个函数。我有这 2 个文本输入区域,可以在其中输入他的姓名和级别。 Nom: Niveau (1 á 6): 提交后,
我安装了最新的 Docker CS,得到了 LAMP image来自 Docker 集线器。我正在尝试在其中创建一个数据库并使用保存在其中的数据库制作一个新图像。 启动容器:docker run --
我有这个 jQuery 简单代码: 由于某种原因,submit() 无法正常工作(我的表单在单击 old_thumb 按钮后未提交。有人可以帮助我吗? 这里是 html 的一部分(它很长
如何获得 input type="submit"onclick 事件来触发 commitfunds.valdiate?我不能使用类或 ID。它必须是一个 onclick 事件。 这是代码: row A
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
来自 this earlier thread我以为我知道可以使用 javascript submit() 命令通过 POST 方法发送表单数据。但我无法让它工作。这个演示在目的方面没有明显的意义,但请
在 mysql 重新启动时提交 XA 待处理事务时,出现以下错误。请帮助我解决这个错误。 mysql> XA RECOVER CONVERT XID; +----------+------------
我有一个带有 的表单. 如果启用了 Javascript,我将删除此 submit -输入字段$('#no-js-submit').remove();并添加“fire-ajax”按钮 $('Fire
我希望在页面加载后提交此表单,并且我使用了以下代码来完成此操作。问题是页面不断重新加载并停留在该循环中。 HTML Select Genre
我们有一个表单,其中有几个单独的提交按钮,它们执行不同的操作。问题是我有几个具有以下 HTML 的按钮: 现在您无法使用标准的 find_control 函数按值定位元素。所以我写了一个谓词函数来
我是一名优秀的程序员,十分优秀!