次の方法で HttpConnection を作成します。
try {
StreamConnection s = (StreamConnection)Connector.open(url);
HttpConnection httpConn = (HttpConnection)s;
} catch (Exception e) {
Dialog.alert(e.getMessage());
}
URLのコンテンツ(URL HTMLファイル内のテキスト)を取得するにはどうすればよいですか
ありがとう、