当从模拟器打开一个简单的HttpConnection时,我遇到了麻烦,我已经将deviceside=true后缀附加到我的url,但它仍然不起作用,我正在接收一个响应代码为0的空HttpConnection。这就是给我带来问题的代码:
public void readUrl(){
HttpConnection conn=null;
try {
conn = (HttpConnection) Connector.open("http://www.google.com;deviceside=true");
conn.setRequestMethod("GET");
if(conn.getResponseCode()==HttpConnection.HTTP_OK){
System.out.println("Create connection sucessfully");
}
} catch (ConnectionNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
}
DataInputStream din=null;
ByteVector responseBytes=null;
try {
din = conn.openDataInputStream();
responseBytes = new ByteVector();
int i = din.read();
while (-1 != i) {
responseBytes.addElement((byte) i);
i = din.read();
}
} catch (IOException e) {
//TODO: HANDLE EXCEPTIONS
e.printStackTrace();
}
responseBytes.toArray();
我不知道发生了什么事。它假定通过附加deviceside=true,它应该直接连接。无论如何,我也尝试安装MDS服务器并将我的url设置为deviceside=false,但结果是相同的。
现在我使用http://localhost:8080/resources/mypage.html等本地url测试了相同的代码,并且它按预期工作,所以我想知道这是否可能是模拟器配置问题。我怎么解它?
根据我的经验,在使用MDS模拟器时需要附加;deviceside=true。在blackberry.com论坛上有一个很棒的帖子,告诉你如何确定你应该使用什么连接后缀,以及一些在黑莓中使用连接的一般好建议。
为了帮助更容易地获取请求的内容,您可以使用iutilities类:
InputStream stream = conn.openInputStream();
String contents = new String(IOUtilities.streamToBytes(stream));
";deviceside=true"用于直接TCP传输。要使用MDS传输,您需要附加";deviceside=false"。
当您在设备模拟器上运行时,您可以使用DIRECT TCP传输,而无需启动MDS模拟器。但是,如果您想要测试MDS传输,那么您需要在启动设备模拟器之前启动MDS模拟器。
在模拟器设置选项卡"General"中,您是否选中了"Launch MDS-CS with Simulator " ?如果是这样,您根本不需要追加任何后缀…
是的,你是对的,与deviceside=true互联网连接被使用,但它似乎是一个问题,HttpConnection类,当我使用这个代码代替:
public StreamConnection openConnection(){
StreamConnection conn=null;
try {
conn = (StreamConnection) Connector.open(url+";deviceside=true");
//conn.setRequestMethod(httpMethod);
} catch (ConnectionNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (IllegalArgumentException e) {
e.printStackTrace();
}
return conn;
}
它工作正常,所以我想知道一些事情…当打开一个连接在黑莓,我应该把我的代码检查响应代码。在创建连接之后?如上面的代码或在打开数据流之后,如:
din = conn.openDataInputStream();
responseBytes = new ByteVector();
int i = din.read();
while (-1 != i) {
responseBytes.addElement((byte) i);
i = din.read();
}
谢谢。