
Originally Posted by
barbeNoire
I need to access the Nokia N90's memory card file system.
After trying to make a simple :
FileConnection fconn = (FileConnection) Connector.open("file:///E:/Images/PlanParisPOI.JPG");
, I had part of this exception message : Permission = javax.micro (then the phone screen's width does not allow to
read the end
of the content).
Then I googled and read about midlet permissions.
So I added permissions for javax.microedition.io.Connector,javax.microedition.io.file.FileConnection into my
midlet's jad file.
Unfortunately, my midlet now fails to install on the mobile phone (authorization failed).
Here is my jad file content:
MIDlet-Version: 1.0.0
MIDlet-Vendor: Midlet Suite Vendor
MIDlet-Jar-URL: MyMidlet.jar
MicroEdition-Configuration: CLDC-1.0
MicroEdition-Profile: MIDP-2.0
MIDlet-1: ClientLourdSIG,,ClientLourdSIG
MIDlet-Permissions: javax.microedition.io.Connector,javax.microedition.io.file.FileConnection
MIDlet-Name: MyMidlet Midlet Suite
I am using Nokia S60 sdk + eclipseME.
Any ideas?
cheers