【问题标题】:Titanium: Saving file locally from Android's Camera/Gallery imageTitanium:从 Android 的相机/图库图像本地保存文件
【发布时间】:2015-03-15 14:48:56
【问题描述】:

我在 Titanium 中将图像保存到本地应用程序文件时遇到问题。 专门从 event.media 创建文件;

function handleImageEvent(event) {
   imgpreview.image = event.media;

   var imaget = event.media;        
   var f = Titanium.Filesystem.getFile(Titanium.Filesystem.resourcesDirectory,imagename); 
   f.write(imaget);

}

//imagename :  I am using in the format of 'photo0.png'

这是迄今为止我尝试整理并通过自己的搜索进行测试的代码, 他们不工作。抛出异常

[WARN] :   TextView: TextView does not support text selection. Action mode cancelled.
[ERROR] :  TiFileProxy: (KrollRuntimeThread) [5233,84017] IOException encountered
[ERROR] :  TiFileProxy: java.io.IOException: read only
[ERROR] :  TiFileProxy:     at org.appcelerator.titanium.io.TiResourceFile.write(TiResourceFile.java:100)
[ERROR] :  TiFileProxy:     at org.appcelerator.titanium.TiFileProxy.write(TiFileProxy.java:286)
[ERROR] :  TiFileProxy:     at org.appcelerator.kroll.runtime.v8.V8Object.nativeFireEvent(Native Method)
[ERROR] :  TiFileProxy:     at org.appcelerator.kroll.runtime.v8.V8Object.fireEvent(V8Object.java:62)
[ERROR] :  TiFileProxy:     at org.appcelerator.kroll.KrollProxy.doFireEvent(KrollProxy.java:884)
[ERROR] :  TiFileProxy:     at org.appcelerator.kroll.KrollProxy.handleMessage(KrollProxy.java:1107)
[ERROR] :  TiFileProxy:     at org.appcelerator.titanium.proxy.TiViewProxy.handleMessage(TiViewProxy.java:347)
[ERROR] :  TiFileProxy:     at android.os.Handler.dispatchMessage(Handler.java:95)
[ERROR] :  TiFileProxy:     at android.os.Looper.loop(Looper.java:137)

[错误]:TiFileProxy:在 org.appcelerator.kroll.KrollRuntime$KrollRuntimeThread.run(KrollRuntime.java:112)

我希望我能提供更多细节,但我很迷茫,抱歉 提前致谢。

【问题讨论】:

  • 能否请您添加整个异常?
  • 我添加了异常,在我第二次检查时我不确定它是否相关,可能是链接我在此处发布的另一个问题:stackoverflow.com/questions/29060291/…

标签: javascript android titanium android-camera titanium-mobile


【解决方案1】:

Titanium.Filesystem.resourcesDirectory 是只读的。请在http://docs.appcelerator.com/titanium/latest/#!/guide/Filesystem_Access_and_Storage-section-29004902_FilesystemAccessandStorage-Storagelocations找到所有位置的列表,包括访问权限

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 2012-12-20
    • 1970-01-01
    • 2014-01-04
    • 1970-01-01
    • 1970-01-01
    • 2017-08-23
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多