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 に答える