gpt4 book ai didi

java - 无法从我的 Android 模拟器连接到本地 Web 服务

转载 作者:行者123 更新时间:2023-12-01 13:38:54 26 4
gpt4 key购买 nike

我在从模拟器连接到本地 Web 服务器时遇到问题。我可以在模拟器之外连接到它。模拟器得到:org.apache.http.conn.httphostconnectexception 连接到 http//localhost;808 被拒绝

protected String doInBackground(String... args) {
try {
// Building Parameters
List<NameValuePair> params = new ArrayList<NameValuePair>();
// getting JSON string from URL
JSONObject json = jParser.makeHttpRequest(url_all_products,
"GET", params);
// Check your log cat for JSON reponse
Log.d("All Products: ", json.toString());
try {
// Checking for SUCCESS TAG
int success = json.getInt(TAG_SUCCESS);

if (success == 1) {
// products found
// Getting Array of Products
products = json.getJSONArray(TAG_PRODUCTS);

// looping through All Products
for (int i = 0; i < products.length(); i++) {
JSONObject c = products.getJSONObject(i);

// Storing each json item in variable
String id = c.getString(TAG_PID);
String name = c.getString(TAG_NAME);

// creating new HashMap
HashMap<String, String> map = new HashMap<String, String>();

// adding each child node to HashMap key => value
map.put(TAG_PID, id);
map.put(TAG_NAME, name);

// adding HashList to ArrayList
productsList.add(map);
}
} else {
// no products found
// Launch Add New product Activity
Intent i = new Intent(getApplicationContext(),
NewProductActivity.class);
// Closing all previous activities
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);
}
} catch (JSONException e) {
e.printStackTrace();
}
} catch (Exception e) {
System.out.println("Got an IOException: " + e.getMessage());
// TODO: handle exception
}
return null;
}

最佳答案

尝试连接到 http://10.0.2.2:8080

10.0.2.2 IP 地址在模拟器中是特殊的,它将透明地连接到主机开发计算机的本地主机 (127.0.0.1)。

如果您在模拟器中使用localhost127.0.0.1,则这将指代内部模拟环回接口(interface)。如果您有另一个程序在模拟器中运行,并在同一端口充当 TCP 或 UDP 服务器,则这非常有用。但是,在您的具体情况下,您确实希望“脱离沙箱”。

official documentation有更多信息(和示例)。

关于java - 无法从我的 Android 模拟器连接到本地 Web 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21009653/

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