如何将我捕获的图像保存在图库文件夹或手机内存中?

Posted

技术标签:

【中文标题】如何将我捕获的图像保存在图库文件夹或手机内存中?【英文标题】:how to save my captured image in gallery folder or phone memory? 【发布时间】:2012-05-29 09:50:24 【问题描述】:

我正在使用诺基亚 3120,我想将捕获的图像保存在手机内存中,但是当我保存图像时,它给出了异常安全 Java/lang/SecurityException 拒绝访问。

我的代码,

FileConnection fileConn = null;
        DataOutputStream dos = null;

        try 
            fileConn = (FileConnection) Connector.open(
                    "file:///C:/story123.jpg");    /*//"file:///root1/story123.jpeg");*/
            if (!fileConn.exists()) 
                fileConn.create();
            
            dos = new DataOutputStream(fileConn.openOutputStream());
            dos.write(photo);
            dos.flush();
            dos.close();
            fileConn.close();

         catch (IOException ioe) 
            System.out.println("Error!" + ioe);
        

【问题讨论】:

该手机不支持 Java/J2ME,请在此处阅读Specification。 【参考方案1】:

J2ME 非常严格。可能手机不允许在文件系统的根文件夹中存储某些内容。 尝试找到 images 文件夹,并将其存储在那里。

你可以得到目录

System.getProperty("fileconn.dir.photos")

另请参阅 FileConnection API system properties in the Symbian platform and Series 40

【讨论】:

以上是关于如何将我捕获的图像保存在图库文件夹或手机内存中?的主要内容,如果未能解决你的问题,请参考以下文章

如何将我生成的 QR 图像保存到图库中?使用颤振

从图库访问图像并在 iOS 应用程序库中显示

如何将图像从相机保存到 iPhone 画廊中的特定文件夹?

NativeScript - 如何将图像保存/添加到手机的默认图库应用程序中

将图像保存到图库

使用多个 CALayers 捕获 UIVIew 的屏幕截图显示白色背景,同时将图像保存在图库中