我通过以下方式制作 HttpConnection:
try {
StreamConnection s = (StreamConnection)Connector.open(url);
HttpConnection httpConn = (HttpConnection)s;
} catch (Exception e) {
Dialog.alert(e.getMessage());
}
如何获取 url 的内容(url html 文件中的文本)
谢谢,