我有一个简单的HTML代码
<html>
<head>
<title>Your Title Here</title>
</head>
<body>
<p> This is a new paragraph!</p>
</body>
</html>
有没有办法通过soap xml或通过json在android中发送和接收?
答案 0 :(得分:2)
您可以使用http://loopj.com/android-async-http/库发送或接收json对象。
将你的json对象构建为,
JSONObject locationInfo = new JSONObject();
locationInfo.put("HTML", myHtmlString);