我已将 html 文件放入 android 设备的 sd 卡中。我正在通过 webview 运行它。但是我在模拟器中给出的路径运行良好。但不在设备上。它在运行时给出错误** Web Page on Found**。
我有这个代码来查找 sd 卡可用性和 sd 卡根目录路径,它工作正常。并且输出正常。
Boolean isSDPresent = android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
if(isSDPresent)
{
Toast.makeText(this, "yes SD-card is present", Toast.LENGTH_SHORT).show(); }
else
{
Toast.makeText(this, "Sorry", Toast.LENGTH_SHORT).show();
}
File externalStorage = Environment.getExternalStorageDirectory();
externalStorage.getAbsolutePath();
Toast.makeText(this, externalStorage.getAbsolutePath(), Toast.LENGTH_SHORT).show();
但我能得到正确的整个文件路径吗?请建议。