【发布时间】:2014-03-16 19:15:57
【问题描述】:
Eclipse 告诉我我的字符串是一个 int?
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(Uri.parse(R.string.get_question_url));
HttpResponse httpresponse = httpclient.execute(httppost);
HttpEntity httpentity = new response.getEntity();
InputStream isr = httpentity.getContent();
第 2 行:HttpPost httppost = new HttpPost(Uri.parse(R.string.get_question_url));
我想知道为什么,有人知道帮助吗?
【问题讨论】:
-
你能告诉我 R.string.get_question_url 的价值是什么