| Reply | « Previous Thread | Next Thread » |
|
Is it possible to browse and access a mobile phone's image gallery using a MIDlet?
|
|
Yes, it is, if your device supports JSR 75 (FileConnection API). Then you can access almost every file on your mobile, however the user will most likely have to confirm every access to the FileSystem unless you certified your MIDlet, which is quite expensive.
|
|
Yes I have tried using FileConnection to do that. But isn't there a specific directory in which the phone stores all the images?
FileConnection fc = (FileConnection)Connector.open("<directory here>") I don't know where to look for the phone's images. I need to automatically generate a list of the images in the phone's gallery. |
|
Okay, so you want the device to tell you where it's default place for images is?
You can query this by calling Code:
String imageHome = System.getProperty("fileconn.dir.photos");
|
|
Wow thanks a lot. This is really helpful for my application.
|
|
I happened to read this document just today, so I could quickly remember where it was *g*
|
|
You truly are the master! MASTERFU!!
|
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| Is MIDP2.0 over Symbian OS slow? | epolitakis | Mobile Java Games | 7 | 2007-03-16 10:32 |
| Accessing the "Tracks" gallery entries | dsiorpaes | Symbian Media (Graphics & Sounds) | 2 | 2006-10-06 00:04 |
| Nokia Image Converter | davidpurdie | General Discussion | 0 | 2004-02-18 16:31 |
| Image Uploader / Image Downloader / Image Server | kehong | General Symbian C++ | 0 | 2003-05-12 18:38 |