如何从本机模块中访问Titanium保存的文件?在我的代码中,我将使用相机拍摄的照片(Ti.Media)保存到文件中。然后,我试图从我的模块中读取同一个文件。我已将nativePath
传递给模块的方法。但是,我一直在模块中找到文件未找到的错误。
在相机成功回调中,我有这段代码:
// earlier in the code
var tiexif = require('com.me.tiexif');
Ti.Media.showCamera({
success: function(event) {
console.log("TIEXIF: showCamera.success()");
anImageView.image = event.media; // works
if (Ti.Filesystem.hasStoragePermissions()) {
console.log("TIEXIF: hasStoragePermissions");
var file = Titanium.Filesystem.getFile(Ti.Filesystem.externalStorageDirectory, 'testphoto.jpg');
console.log("TIEXIF: nativePath: " + file.nativePath);
file.write(event.media);
someUILabel.text = tiexif.getExifOrientation(file.nativePath);
} else ...
}, ...
})
我在日志中看到了这一点:
[INFO] TIEXIF: showCamera.success()
[ERROR] File: fail readDirectory() errno=20
[ERROR] File: fail readDirectory() errno=13
[ERROR] File: fail readDirectory() errno=13
[ERROR] File: fail readDirectory() errno=13
[INFO] TIEXIF: hasStoragePermissions
[INFO] TIEXIF: nativePath: file:///storage/emulated/0/com.me.exiftest/testphoto.jpg
[WARN] ExifInterface: Invalid image.
[WARN] ExifInterface: java.io.FileNotFoundException: file:/storage/emulated/0/com.me.exiftest/testphoto.jpg: open failed: ENOENT (No such file or directory)
我已尝试使用externalStorageDirectory
,applicationDataDirectory
,tempDirectory
和applicationCacheDirectory
,但结果相同。
答案 0 :(得分:2)
请删除file:/
后缀,这是Titanium特定的内容。 Android中的路径以/
答案 1 :(得分:1)
这是我将图像路径转换为文件的方式:
private String getPathToApplicationAsset(String assetName) {
// The url for an application asset can be created by resolving the specified
// path with the proxy context. This locates a resource relative to the
// application resources folder
String result = resolveUrl(null, assetName);
return result;
}
// ...
String imageSrc = options.getString("image");
// ...
String url = getPathToApplicationAsset(imageSrc);
TiBaseFile file = TiFileFactory.createTitaniumFile(new String[] { url }, false);
我正在使用它来打开资源文件夹中的文件。没有尝试使用外部文件。
您是否可以在加载文件的位置显示模块代码?
修改强>
要将文件用于Exif信息,请查看此项目: https://github.com/freshheads/fh.imagefactory/blob/master/android/src/fh/imagefactory/ImagefactoryModule.java#L66 尤其是标记的功能。这将转换路径(条带元素)