如何从MEmu Android模拟器连接到我的http:// localhost Web服务器

时间:2017-04-29 19:31:54

标签: android android-emulator

如何从MEmu Android模拟器连接到我的http://localhost网络服务器,以便使用android studio和MVC或PHP网络服务进行开发。

2 个答案:

答案 0 :(得分:1)

在您的应用中使用IP地址http://10.0.3.2

答案 1 :(得分:1)

我无法通过private <T> T json2Object(String jsonString, String type, Class<T> clazz) { JsonNode jsonObjectNode = getChildNode(jsonString, type); T typeObject = null; try { typeObject = jacksonMapper.treeToValue(jsonObjectNode, clazz); } catch (JsonProcessingException jsonProcessingException) { LOGGER.severe(jsonProcessingException); } return typeObject; } 访问localhost而是必须使用:http://10.0.3.2:<hostport>