gpt4 book ai didi

android - SQLiteCantOpenDatabaseException => 未知错误(代码 14): Could not open database (Android 6. 0)

转载 作者:太空狗 更新时间:2023-10-29 14:53:46 30 4
gpt4 key购买 nike

以下在数千台设备上运行,但最近我收到以下错误,两次,都是来自 android 6.0,所以它可能与新的 android 版本有关:

RootUtils.copyDatabase(path, pathApp);
if (new File(pathApp).exists())
{
L.d(this, "Database copied!"); // <= this is called, so copying file succeeds!!!

SQLiteDatabase db = SQLiteDatabase.openDatabase(pathApp, null, SQLiteDatabase.OPEN_READONLY);
final Cursor cursor = db.rawQuery("select * from contacts", new String[0]); // <= this line throws the exception
cursor.moveToFirst();
....
}

日志/异常

c.m.s.utils.RootUtils   [RootUtils-91]  copyDatabase: true
c.m.s.networks.utils.Util [FUtil-105] Database copied!
c.m.s.networks.utils.Util [FUtil-185] unknown error (code 14): Could not open database
android.database.sqlite.SQLiteCantOpenDatabaseException: unknown error (code 14): Could not open database
at android.database.sqlite.SQLiteConnection.nativeOpen(Native Method)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:207)
at android.database.sqlite.SQLiteConnection.open(SQLiteConnection.java:191)
at android.database.sqlite.SQLiteConnectionPool.openConnectionLocked(SQLiteConnectionPool.java:463)
at android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:185)
at android.database.sqlite.SQLiteConnectionPool.open(SQLiteConnectionPool.java:177)
at android.database.sqlite.SQLiteDatabase.openInner(SQLiteDatabase.java:806)
at android.database.sqlite.SQLiteDatabase.open(SQLiteDatabase.java:791)
at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:694)
at android.database.sqlite.SQLiteDatabase.openDatabase(SQLiteDatabase.java:669)
...

我的复制功能如下:

public final static boolean copyDatabase(String pathSource, String pathTarget) throws IOException, InterruptedException, TimeoutException, RootDeniedException
{
Shell shell = RootTools.getShell(true);
Command command = new Command(0,
"su\n",
"rm " + pathTarget + "\n",
"cat " + pathSource + " > " + pathTarget + "\n",
"chown root.root " + pathTarget + "\n",
"chmod 777 " + pathTarget + "\n");
command = shell.add(command);
int exitCode = command.getExitCode();
while (!command.isFinished()) {
Thread.sleep(50);
}
shell.close();
boolean success = exitCode == -1 && command.isFinished();
L.d(RootUtils.class, "copyDatabase: " + success);
return success;
}

编辑:我的新复制功能甚至将 Owner/Group 设置为我的应用进程 - 目前只收到一个反馈,但似乎没有解决问题

public final static boolean copyDatabase(String ownAppDatabase, String pathSource, String pathTarget) throws IOException, InterruptedException, TimeoutException, RootDeniedException
{
Shell shell = RootTools.getShell(true);

boolean getRealUser = true;
String owner = null;
String group = null;
if (getRealUser)
{
final StringHolder lsResult = new StringHolder("");
Command lsCommand = new Command(0,
"su\n",
"ls -ld " + ownAppDatabase + "\n")
{
public void commandOutput(int id, String line) {
super.commandOutput(id, line);
lsResult.set(line);
}

};
lsCommand = shell.add(lsCommand);
int lsExitCode = lsCommand.getExitCode();
while (!lsCommand.isFinished()) {
Thread.sleep(50);
}

L.d(RootUtils.class, "ls exit code: " + lsExitCode);
L.d(RootUtils.class, "ls result: " + lsResult.get());

String[] parts = lsResult.get().split("\\s+");
if (parts.length > 3)
{
owner = parts[1];
group = parts[2];
}
}

if (owner == null || group == null)
{
L.d(RootUtils.class, "owner or group is NULL!");
getRealUser = false;
}
else
L.d(RootUtils.class, "owner=" + owner + " | group=" + group);

Command command = new Command(0,
"su\n",
"rm " + pathTarget + "\n",
"cat " + pathSource + " > " + pathTarget + "\n",
"chown " + (getRealUser ? (owner + "." + group + " ") : "chown root.root ") + pathTarget + "\n",
"chmod 777 " + pathTarget + "\n");
command = shell.add(command);
int exitCode = command.getExitCode();
while (!command.isFinished()) {
Thread.sleep(50);
}
shell.close();
boolean success = exitCode == -1 && command.isFinished();
L.d(RootUtils.class, "copyDatabase: " + success);
return success;
}

最佳答案

我在更新到 Android 6.0 后尝试打开存储在内部存储器上的 SQLite 数据库时遇到了同样的问题。

这是由 Marshmallow 的新权限模型引起的。

作为解决方法,我必须转到系统设置的我的应用程序的“应用程序信息”页面并授予存储访问权限。

关于android - SQLiteCantOpenDatabaseException => 未知错误(代码 14): Could not open database (Android 6. 0),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33121097/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com