如何将我捕获的图像保存在图库文件夹或手机内存中?
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
【讨论】:
以上是关于如何将我捕获的图像保存在图库文件夹或手机内存中?的主要内容,如果未能解决你的问题,请参考以下文章