Hi,
I was developing a J2ME application , i want to show a web page inside a mobile phone application, but not call a browser.
i was done , but currently i facing the address problem
i only can run "http://m.google.com"
but i want to run "http://www.google.com"
this is the code that i launch a web inside mobile phone
Display.init(this);
HttpRequestHandler handler=new HttpRequestHandler();
HTMLComponent htmlC = new HTMLComponent(handler);
Form f = new Form();
f.setTitle("MyTitle");
f.setLayout(new GridLayout(1,1));
f.addComponent(htmlC);
f.show();
htmlC.setPage("http://www.google.com");
after i run it, i can saw my application that show a title "MyTile" but the content are show blank.
what might be the problem?
thank you

Reply With Quote

