Java me – how to create a browser window in J2ME?
How to create a browser component in J2ME that can display web pages in applications? Is there an API available? Or is it really possible?
Solution
As far as I know, the only browser written in J2ME is Opera Mini (don't confuse it with Opera Mobile, it's another matter) It works very well even on very low-end mobile phones, but most HTML processing is completed on a special server hosted by opera. The client will be optimized and displayed with pre formatted binary data
Using java to do everything on a mobile phone can be difficult or even impossible You can code browsers that display very basic HTML pages, but due to memory and CPU constraints, it is impossible to execute it on J2ME even for more complex pages
I can imagine some high-end phones with a custom API to embed the local browser midled, but the standard J2ME certainly does not have this