這裏是我的代碼:Android應用程序說該文件不存在,但它確實存在。我需要安裝它
String dir = getFilesDir().getAbsolutePath();
File myFile = new File(dir+"/file.apk");
if (myFile.exists())
{
textView.setText("File exists.");
}
else
{
textView.setText("File does not exist.");
}
myFile.exists()是假的。我不知道爲什麼。該文件存在並位於該目錄中。
當我解決問題,我會嘗試這樣的:
Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
intent.setData(Uri.fromFile(myFile));
intent.putExtra(Intent.EXTRA_NOT_UNKNOWN_SOURCE, true);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
有人能幫忙嗎?爲什麼它看不到該文件?
UPDATE:
這真的很奇怪。如果我使用代碼:
if (myFile.exists())
{
textView.setText("it exists");
}
else
{
textView.setText(myFile.getAbsolutePath());
}
,它轉到'else'並顯示'不存在'文件的路徑。
app永遠不會說錯!檢查文件是否存在或不使用文件資源管理器或檢查你是否使用正確的文件路徑? –
它確實存在。我可以通過資源管理器訪問它並手動安裝。 – Mike
再次驗證文件路徑! –