gpt4 book ai didi

黑莓消耗 wcf

转载 作者:行者123 更新时间:2023-12-04 06:06:02 24 4
gpt4 key购买 nike

我正在使用 OS 5.0,我正在尝试从 wcf 获取一些信息。
在模拟器上它像冠军一样工作,但在连接了wifi的设备上,我收到错误消息:

APN is not specified



我的代码:
    HttpConnection con = null;
InputStream is = null;

try {
con = (HttpConnection) Connector.open(url);
final int responseCode = con.getResponseCode();
if (responseCode != HttpConnection.HTTP_OK) {
System.out.println(responseCode);
}
is = con.openInputStream();
byte[] responseData = new byte[10000];
int length = 0;
StringBuffer rawResponse = new StringBuffer();
while (-1 != (length = is.read(responseData))) {
rawResponse.append(new String(responseData, 0, length));
}
final String result = rawResponse.toString();
_labelField.setText(result);

} catch (final Exception ex) {
System.out.println(ex.getMessage());
_labelField.setText(ex.getMessage());

} finally {
try {
is.close();
is = null;
con.close();
con = null;
} catch (Exception e) {
}
}

最佳答案

查看这篇文章 "Different ways to make HTTP Socket Connection" .如果您使用 BES 网络或 BIS 或 WiFi 或 3G 网络等,本文将帮助您了解如何建立网络连接。
回到你的问题,如果你想通过 Wi-Fi 连接,你需要修改你的连接 url。替换以下内容:

con = (HttpConnection) Connector.open(url);


有了这个:

con = (HttpConnection) Connector.open(url+";interface=wifi");


现在它可以在具有 Wi-Fi 连接的设备上工作。

关于黑莓消耗 wcf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8347058/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com