2

我正在使用诺基亚 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);
        }
4

1 回答 1

3

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

你可以得到目录

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

另请参阅 Symbian 平台和 Series 40 中的 FileConnection API 系统属性

于 2012-05-29T17:42:11.133 回答