这是我的 logcat,第一行是我尝试连接的 url,它是有效的 url
here's my logcat and the first line the url i try to connect with and it's valid url
她是我的代码导致错误并拒绝连接
her is my code that cause the error and make the connection to refuse
public static String makeHttpRequest(URL url) throws IOException {
String jsonResponse = "";
Log.e(LOG_TAG, url.toString());
// If the URL is null, then return early.
if (url == null) {
return jsonResponse;
}
HttpURLConnection urlConnection = null;
InputStream inputStream = null;
try {
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setReadTimeout(10000 /* milliseconds */);
urlConnection.setConnectTimeout(15000 /* milliseconds */);
urlConnection.setRequestMethod("GET");
urlConnection.connect();
// If the request was successful (response code 200),
// then read the input stream and parse the response.
if (urlConnection.getResponseCode() == 200) {
inputStream = urlConnection.getInputStream();
jsonResponse = readFromStream(inputStream);
} else {
Log.e(LOG_TAG, "Error response code: " + urlConnection.getResponseCode());
}
} catch (IOException e) {
Log.e(LOG_TAG, "Problem retrieving the Category JSON results.", e);
} finally {
if (urlConnection != null) {
urlConnection.disconnect();
}
if (inputStream != null) {
inputStream.close();
}
}
return jsonResponse;
}
我已经知道如何使 Http 连接并且以前做过很多但这是第一次在本地服务器上
i already know how to make Http connect and done it a lot before but this the first time on local server
由于模拟器和笔记本的本地主机不同,您需要做以下操作:
Since local host for Emulator and Laptop is different, you need to do following:
ipconfig
命令获取 PC 的 IP 地址.ipAddress
,而不是使用 localhost
.ipconfig
command in your Laptop's command prompt.localhost
, you should use ipAddress
in your URL. 所以您的地址将变为:http://<ip地址>/lotus/getstats.php?category=ATM
这篇关于Android - 尝试连接到本地服务器时出错(Xampp)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!