本文介绍了Android - 尝试连接到本地服务器时出错(Xampp)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
这是我的 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 地址. - 您应该在 URL 中使用
ipAddress
,而不是使用localhost
.
- Get the IP address of your PC using:
ipconfig
command in your Laptop's command prompt. - Instead of using
localhost
, you should useipAddress
in your URL.
所以您的地址将变为:http://<ip地址>/lotus/getstats.php?category=ATM
这篇关于Android - 尝试连接到本地服务器时出错(Xampp)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!