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?
Asked
Active
Viewed 692 times
1
-
2You have a bunch of questions that have been answered and has obviously helped you, but you have not [accepted them](http://u.sbhat.me/t6SXUH). Please do else people may be not be inclined to help you – Sathyajith Bhat Jan 15 '12 at 17:21
1 Answers
1
Use Display.getInstance().getProperty()
to extract custom values from the jad.

Lucifer
- 29,392
- 25
- 90
- 143

Shai Almog
- 51,749
- 5
- 35
- 65
-
thanks Shai Almog but i want to extract values from MANIFEST.MF not jad. ias this method working for both?? – aida Jan 20 '12 at 20:00
-
2To some degree. Only elements mirrored in the manifest will appear. – Shai Almog Jan 21 '12 at 19:53