1
我正試圖創建一個模擬相機的程序。如何將圖像存儲到移動設備的文件中?我針對Symbian S60v3,使用諾基亞N82作爲測試手機。J2ME將圖像存儲到文件
我正試圖創建一個模擬相機的程序。如何將圖像存儲到移動設備的文件中?我針對Symbian S60v3,使用諾基亞N82作爲測試手機。J2ME將圖像存儲到文件
沒關係,我明白了。我可以只使用一個到的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