Categories: Java | Java ME | How To | Browsing
This page was last modified 08:36, 25 September 2007.
How to invoke web browser from Java ME
From Forum Nokia Wiki
The default phone web browser can be invoked from within the Java ME application by using javax.microedition.midlet.MIDlet.platformRequest().
On some devices the MIDlet has to be closed (for example on Series 40 devices), before the browser can be launched. The application can take this into account by checking the return value of this method call. The value is true, if the MIDlet suite MUST first exit before the content can be fetched.
The following code is used for invoking the webbrowser
String url = "http://forum.nokia.com"; platformRequest(url );
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Two applications using same connection | sambarider | General Symbian C++ | 1 | 2006-08-22 19:51 |
| Question about Launch WebBrowser | zhangwei_Nirvana | General Symbian C++ | 1 | 2007-10-25 16:40 |
| Displaying Web page on mobile | parthmankad | Mobile Java Networking & Messaging & Security | 1 | 2006-09-24 09:13 |
| java or c??? | teeka | Mobile Java General | 2 | 2004-11-16 12:59 |
| Upgrading default s60v3 browser in 5500 | ireks | General Discussion | 4 | 2007-02-15 08:21 |
