views:

112

answers:

1

i have .jar file of lwuit and its also in there in netbeans library . when i add it as .jar file my proograms runs good and wheni add it as library my outpout is not shown correctly . whats wrong with this ?>

+2  A: 

When added as a library, lwuit is only available for your application to compile against. I assume lwuit is not already installed on whatever J2ME-enabled device/emulator you want to run your application.

When added to your application jar file, lwuit is also available for your application to run against. Your application jar file is presumably significantly larger then.

QuickRecipesOnSymbianOS