Reducing the size of a j2me jar
In J2ME application development , the size of the j2me application jar file is very important as the application has limited resources in mobile devices. Below you can see some of the points would help you to reduce the size for the jar. Some points for j2me jar size reduction There are many ways to reduce the size of your wireless Java application. * Keep it simple . Simplicity of design can yield robustness, speed, and efficient use of space. * Recompute rather than store . Recomputing a value rather than storing it for later retrieval can save space. As an example consider the following code fragment: * Choose an elegant data structure to store information . You should always consider your options for a data structure to store your information on the device. * Remove unnecessary classes . One way to "keep it simple" is to review your application design and eliminate classes that are not actually needed. * Reduce functionality and features. Is all the functional...