1
我必須編寫一個Android客戶端,我應該使用HttpComponents連接到端口8080上的特定服務器。 現在,我發現的所有內容都是Apache-網站,這是我所需要的幾乎完美,除了端口它連接到:HttpComponents - 連接到不同的端口
if (isSet)
{
throw new IOException("Hostname or Port are not set!");
}
HttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet(serverURL + ":" + serverPort + "/maps");
HttpResponse response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
if (entity != null)
{
InputStream instream = entity.getContent();
int l;
byte[] tmp = new byte[2048];
while ((l = instream.read(tmp)) != -1)
{
}
}
有沒有什麼辦法來改變端口? 任何幫助,將不勝感激。