私は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());
私は自分のアプリでウェブサイトを開こうとしています、前に感謝します:)