gpt4 book ai didi

javascript - Phonegap/Cordova 检查带有特殊字符的文件

转载 作者:行者123 更新时间:2023-11-28 07:38:49 25 4
gpt4 key购买 nike

我想在我的应用程序第一次启动时下载所需的图像。我在下载之前检查文件是否存在,但遇到一些特殊字符的问题。空格似乎是自动编码的,但是我如何检查名为 file:///data/data/de.test.app/files/data/img/Pre+f-test.jpg 的文件?我检查文件(在确保 deviceready-Event 触发后):

window.resolveLocalFileSystemURL(cordova.file.dataDirectory + path, function (fileEntry) {
defer.resolve(fileEntry); //File exists
}, function () {
defer.reject(path); //File not found
});

我试过了

path = "file:///data/data/de.test.app/files/data/img/Pre+ƒ-test.jpg";
path = "file:///data/data/de.test.app/files/data/img/Pre%2B%C6%92-test.jpg";

最佳答案

您的文件插件版本是什么?我在文件插件 1.3 中遇到了类似的问题,并已修复:

public LocalFilesystemURL filesystemURLforLocalPath(String localPath) {
LocalFilesystemURL localURL = null;
int shortestFullPath = 0;

for (Filesystem fs: filesystems) {
if (fs != null) {
//LocalFilesystemURL url = fs.URLforFilesystemPath(localPath);
LocalFilesystemURL url = fs.URLforFilesystemPath(Uri.encode(localPath, "/"));
if (url != null) {
if (localURL == null || (url.fullPath.length() < shortestFullPath)) {
localURL = url;
shortestFullPath = url.fullPath.length();
}
}
}
}
return localURL;
}

关于javascript - Phonegap/Cordova 检查带有特殊字符的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28294994/

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