首页 > 解决方案 > Android Volley Request 完全失败

问题描述

我正在尝试从 Http 请求获取数据到我自己的 API。在我的浏览器中运行请求(用 localhost 交换 IP)让我:

["Herbalism","Mining","Skinning","Alchemy","Blacksmithing","Enchanting","Engineering","Inscription","Jewelcrafting","Leatherworking","Tailoring","Archaeology","Cooking","Fishing"]

我正在使用以下代码,从此处提供的示例修改:https ://www.tutorialspoint.com/how-to-use-volley-library-to-parse-json-in-android-kotlin-app 它没有打印我的“打印任何东西”。据我所知,这无济于事。我尝试了很多不同的事情,包括来自这里的建议:我可以使用 volley 进行同步请求吗?在这里:Volley Timeout Error并觉得我离让这个请求生效还差得远。防火墙允许此流量。抓住了JSONExceptionResponse.ErrorListener也没有把任何东西拿出来。我使用的是普通的 http,没有证书或任何东西。最终,我想用这些数据填充 Spinner,但现在我什至无法让这个最基本的实现工作。

package com.wowahapp

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.*
import androidx.recyclerview.widget.RecyclerView
import com.android.volley.Request
import com.android.volley.RequestQueue
import com.android.volley.Response
import com.android.volley.toolbox.*
import org.json.JSONException


class AddRecipeActivity : AppCompatActivity() {

    lateinit var searchTextView : TextView
    private var requestQueue : RequestQueue? = null


    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_add_recipe)


        searchTextView = findViewById<TextView>(R.id.searchTextView) as TextView

        getAllProfessions(searchTextView)

    }

    fun getAllProfessions(searchText : TextView) {

        val url = "http://192.168.0.24:49155/allprofessions"
        val request = JsonObjectRequest(Request.Method.GET, url, null, Response.Listener {
                response ->try {
            val jsonArray = response.getJSONArray("name")
            println("Print anything at all!")
            for (i in 0 until jsonArray.length()) {
                println(jsonArray.getJSONObject(i))
            }
        } catch (e: JSONException) {
            e.printStackTrace()
        }
        }, Response.ErrorListener { error -> error.printStackTrace() })
        requestQueue?.add(request)
    }
}

标签: androidhttpkotlinandroid-volley

解决方案


本文档解释了 VolleyWebService 类的实现: http ://code.sunnyjohn.in/index.php/2020/12/24/retrieve-data-volley/

您必须实例化该类,创建一个新的请求队列,然后添加到请求队列中。


推荐阅读