From a J2me program, can the whole web-site be displayed?
I mean to display the web-site on the phone.( not just to read data from the web-site)
From a J2me program, can the whole web-site be displayed?
I mean to display the web-site on the phone.( not just to read data from the web-site)
Check platformRequest() which opens the site in question in the browser of the phone.
If you want to display the HTML inside your application, you have to implement (or use some library - cannot remember if any useful ones exist) parsing of the HTML and rendering it on the screen. That is possible to do, for example Opera Mini is a Java ME MIDlet.
Hartti