aida
aida

Reputation: 163

how to read manifest.mf in an j2me application

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

Answers (1)

Shai Almog
Shai Almog

Reputation: 52770

Use Display.getInstance().getProperty() to extract custom values from the jad.

Upvotes: 1

Related Questions