0

我正在开发 J2ME。
你能介意帮我找出这段代码有什么问题吗:

HttpConnection c = null;

    try {
        c = (HttpConnection)Connector.open("http://www.mysite.com",Connector.READ_WRITE, true);
        c.setRequestMethod(HttpConnection.GET); //default
        is = c.openInputStream(); // transition to connected!
            int ch = 0;
        for(int ccnt=0; ccnt < 150; ccnt++) { // get the title.
            ch = is.read();
            if (ch == -1){
                break;
            }
                sb.append((char)ch);
        }
    }   
    catch (IOException x){
        x.printStackTrace();
    }
    finally{
        try     {
            is.close();
            c.close();
        } catch (IOException x){
            x.printStackTrace();
        }
    }
        System.out.println(sb.toString());


我正在尝试通过我的应用程序打开网站,谢谢之前:)

4

1 回答 1

3

要在 J2ME 中打开 URL,请在非系统线程中执行以下操作:

MIDlet.platformRequest("http://www.mysite.com/");

于 2012-10-01T15:28:22.907 回答