- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的 android 应用程序中,我试图通过后请求从我的服务器获取(在异步任务中)一个 json 字符串:
...
HttpClient httpClient = new DefaultHttpClient();
CookieStore cookieStore = new BasicCookieStore();
HttpContext httpContext = new BasicHttpContext();
httpContext.setAttribute(ClientContext.COOKIE_STORE, cookieStore);
CookieSyncManager.createInstance(getApplicationContext());
CookieManager cookieManager = CookieManager.getInstance();
String cookies = cookieManager.getCookie("www.myExample.com");
HttpPost post = new HttpPost("www.myExample.com/api/");
post.setHeader("Referer", "https://www.myExample.com/");
post.setHeader("X-Requested-With", "XMLHttpRequest");
post.setHeader("Cookie", cookies);
Pattern pattern = Pattern.compile("csrftoken=(.*?);");
Matcher matcher = pattern.matcher(cookies);
String csrftoken = "";
if (matcher.find())
{
csrftoken = matcher.group(1);
}
post.setHeader("X-CSRFToken", csrftoken);
>> List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
nameValuePairs.add(new BasicNameValuePair("output_format", "json"));
nameValuePairs.add(new BasicNameValuePair("plain", "true"));
try {
post.setEntity(new UrlEncodedFormEntity(nameValuePairs,"UTF-8")); <<
HttpResponse response = httpClient.execute(post);
HttpEntity entity = response.getEntity();
InputStream content = entity.getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(content));
String result, line = reader.readLine();
result = line;
while((line = reader.readLine()) != null) {
result += line;
}
if (result != null) {
try {
JSONObject jObj = new JSONObject(result);
} catch (JSONException e) {
e.printStackTrace();
}
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
Log.d("result", "not");
Log.d("result", e.toString());
e.printStackTrace();
}
...
在我的例子中,实体的配置似乎失败了,我总是得到结果,就好像我会在没有实体的情况下发送请求,并带有他重要的 nameValuePairs。我用 >> <<.
标记了相关行最佳答案
将您的代码更新为要发布的代码段
public String doInBackground(....){
DefaultHttpClient httpClient = new DefaultHttpClient();
String jsonString = "{\"example\": \"go\"}";
String url = "www.myExample.com/api/";
HttpPost httpReq = new HttpPost(url );
httpReq.setHeader("Accept", "application/json");
httpReq.setHeader("Content-type", "application/json");
StringEntity se = new StringEntity(jsonString, "UTF-8");
httpReq.setEntity(se);
Log.e("Invoking Post API", ((HttpPost) httpReq).getURI().toString());
HttpResponse response = httpClient.execute(((HttpPost) httpReq));
String result = EntityUtils.toString(response.getEntity());
return result;
}
和这个要获取的 fragment
公共(public)字符串 doInBackground(....){
DefaultHttpClient httpClient = new DefaultHttpClient();
HttpGet httpReq = new HttpGet("www.myExample.com/api/");
HttpResponse response = httpClient.execute(httpReq);
String responseText = EntityUtils.toString(response.getEntity());
result = responseText;
return result;
}
关于android - HTTPRequest:setEntity 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25481759/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!