Reputation: 163
I'm developing a j2me application using Netbeans IDE and LWUIT library. I need to read some attributes of MANIFEST.MF that are included in jar file.
What all I found in net, either have conflict with j2me or are not working with Netbeans.
How to read these attributes at run time?
Upvotes: 1
Views: 735
Reputation: 52770
Use Display.getInstance().getProperty()
to extract custom values from the jad.
Upvotes: 1