如何将 Cordova WebView 中文件输入的文件保存到设备文件系统?
谢谢!
答案 0 :(得分:1)
希望,你仍然在寻找答案。
在我的一个应用程序中,我使用两个函数将输入#文件保存为pdf,但您也可以为其他mime类型重写这些函数。直到今天,这些功能同时适用于平台Android和iOS。
函数getAppURI
用于获取可以将文件复制到的实际app-folder-name,它请求应用程序的Cache-Folder并替换最后一个子文件夹名称以获取基础 - uri您的应用程序,非常简单。
// get your app-root-folder-name, for instance Android: file:///storage/emulated/0/Android/data/YOUR_APP_NAMESPACE/
function getAppURI(isAndroid,callback) {
if(isAndroid) {
window.requestFileSystem(LocalFileSystem.TEMPORARY, 0, function (filesystem) {
var cacheDir = filesystem.root.toURL();
var startPointCacheFolderName = cacheDir.match(/\/\w+\/$/) [0];
callback(cacheDir.replace(startPointCacheFolderName, '') + '/');
}, function (error) {
console.log('no access to app-filesystem', error);
}
);
}
else{
// iOS
// just request the filesystem so that you really have access to it
window.resolveLocalFileSystemURL(cordova.file.documentsDirectory,
function(entry){
callback(entry.nativeURL);
},
function(error){
console.log("no access to filesystem",error);
});
}
}
使用savePDFFromInputFile
函数完成实际的复制操作。此函数接受四个参数,您可以使用它们基本上控制目标以及如何命名复制的pdf文件。它检查它是否为pdf,获取它的原始文件名(您可以在之后使用)并创建一个Blob
,其中包含来自FileReader的二进制数组结果。
但是在可以复制输入#文件之前,会创建一个新的空文件。之后,刚刚创建的Blob
被写入此空文件。完成!
function savePDFFromInputFile(inputHTMLElement, appURI, sourcename, callback) {
// check whether its a pdf
if (inputHTMLElement.files[0] &&
inputHTMLElement.files[0].type &&
inputHTMLElement.files[0].type.indexOf('pdf') !== - 1) {
var filename = "";
var reader = new FileReader();
var fullPath = inputHTMLElement.value;
if (fullPath) {
// get original filename that can be used in the callback
var startIndex = (fullPath.indexOf('\\') >= 0 ? fullPath.lastIndexOf('\\') : fullPath.lastIndexOf('/'));
var filename = fullPath.substring(startIndex);
if (filename.indexOf('\\') === 0 || filename.indexOf('/') === 0) {
filename = filename.substring(1);
}
}
reader.onload = function () {
// the pdf-file is read as array-buffer
// this array-buffer can be put into a blob
var blob = new Blob([reader.result], {
type: 'application/pdf'
});
// create empty file
$cordovaFile.createFile(appURI, sourcename, true).then(function (success) {
// write to this empty file
$cordovaFile.writeExistingFile(appURI, sourcename, blob, true).then(function (success) {
callback({
name: filename,
source: sourcename
});
}, function (error) {
console.log(error);
});
}, function (error) {
console.log(error);
});
};
reader.readAsArrayBuffer(inputHTMLElement.files[0]);
}
}
这是两个函数如何使用的示例:
// test for android-plattform
var isAndroid = true;
getAppURI(isAndroid, function(appURI){
var inputFileElement = $('ID OR CLASS OF INPUT#FILE')[0]; // or use document.getElementById(...)
var sourcename = (new Date()).getTime() + '.pdf';
savePDFFromInputFile(inputFileElement, appURI, sourcename, function(copiedPDF){
console.log("pdf copied successfully",copiedPDF.name,copiedPDF.source);
});
});
希望它有所帮助!
答案 1 :(得分:0)