我试图在Android代码中做一个简单的GET请求,我只是从Volley的官方网站上复制了代码,但我得到一个错误说:"无法解析符号"方法" &#34 ;.
我的代码是:
public void onReceive(final Context context, Intent intent) {
// Instantiate the RequestQueue.
RequestQueue queue = Volley.newRequestQueue(context);
String url = ***** ; // my URL
// Request a string response from the provided URL.
StringRequest stringRequest = new StringRequest(DownloadManager.Request.Method.GET, url,
new Response.Listener<String>() { //the error is in THIS line
@Override
public void onResponse(String response) {
// Display the first 500 characters of the response string.
Toast.makeText(context, "Response is: " + response.substring(0,500), Toast.LENGTH_LONG).show();
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Toast.makeText(context, "error", Toast.LENGTH_LONG).show();
}
});
//将请求添加到RequestQueue。 queue.add(stringRequest);
对于导入,我有这些行(我手动编写):
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.toolbox.StringRequest;
import com.android.volley.toolbox.Volley;
我试图包括这一行:&#34; import com.android.volley.Request.Method;&#34;但它并没有改变任何事情。我仍然有同样的错误
如何解决此问题?
答案 0 :(得分:7)
您正在使用
DownloadManager.Request.Method.GET
而不是
com.android.volley.Request.Method.GET
答案 1 :(得分:1)
您使用的是错误的课程
更改
StringRequest stringRequest = new StringRequest(DownloadManager.Request.Method.GET, url,
到
StringRequest stringRequest = new StringRequest(com.android.volley.Request.Method.GET, url,