Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我必须创建 J2me 启动器,当我运行模拟器时,当我单击它时会显示图标,然后它会将我重定向到我提供的网站。我已经在互联网上对其进行了研究,但找不到任何解决方案如果有人可以帮助我,请帮助我,如果有任何建议,请给我。
你为什么不使用这样的东西:
platformRequest("http://ololo.com");
它将调用默认浏览器来打开链接。
public void openBrowser(String URL) { try { mainMIDlet.platformRequest(URL); } catch (ConnectionNotFoundException e) { // error } }