There is probably a simple answer to this problem, but I’ll ask anyway.
Is there any way to do local file i/o in J2ME? Specifically, I am wanting to access a data file packaged in my JAR file. J2ME does not support Properties or ResourceBundles, and I tried to do:
DataInputStream dis = Connector.openDataInputStream(“file://xyz”);
… but it gave me a non-supported protocol exception.
Thanks.