nokia 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);
}