我正在尝试创建一个模拟相机的程序。如何将图像存储到移动设备中的文件?我的目标是Symbian S60v3,使用诺基亚N82作为我的测试手机。
答案 0 :(得分:2)
没关系,我明白了。我可以使用FileConnection来编写它 -
FileConnection filecon = (FileConnection)
Connector.open("file:///E:/imagefile.jpg");
if (!filecon.exists())
filecon.create(); // create the file if it doesn't exist
DataOutputStream os = filecon.openDataOutputStream();
os.write(raw); // Raw image