我正在为我的BlackBerry编写一个小应用程序,我需要将一些数据发送到网页(通过GET或POST)
任何人都可以建议使用BlackBerry的方式。
答案 0 :(得分:1)
您需要javax.microedition.io.HttpConnection
。链接的javadoc包含GET和POST的基本代码示例。以下是GET示例的摘录:
void getViaStreamConnection(String url) throws IOException {
StreamConnection c = null;
InputStream s = null;
try {
c = (StreamConnection)Connector.open(url);
s = c.openInputStream();
int ch;
while ((ch = s.read()) != -1) {
...
}
} finally {
if (s != null)
s.close();
if (c != null)
c.close();
}
}