简体   繁体   English

Android Volley Request 完全失败

[英]Android Volley Request utterly fails

I am trying to get data from an Http request to my own API.我正在尝试从 Http 请求中获取数据到我自己的 API。 Running the request in my browser (swapping the IP with localhost) gets me:在我的浏览器中运行请求(将 IP 与 localhost 交换)得到我:

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

I am using the following code, modified from the example provided here: https://www.tutorialspoint.com/how-to-use-volley-library-to-parse-json-in-android-kotlin-app It does not print my "Print anything at all".我正在使用以下代码,从此处提供的示例修改: https://www.tutorialspoint.com/how-to-use-volley-library-to-parse-json-in-android-kotlin-app它没有打印我的“打印任何东西”。 From what I can tell this does nothing.据我所知,这无济于事。 I have tried many different things including suggestions from here: Can I do a synchronous request with volley?我尝试了很多不同的事情,包括来自这里的建议: 我可以使用 volley 进行同步请求吗? and here: Volley Timeout Error and feel that I am in no way closer to getting this request to work.在这里: Volley Timeout Error并觉得我离让这个请求生效还差得远。 The firewall permits this traffic.防火墙允许此流量。 The catch JSONException and Response.ErrorListener are also not putting anything out. catch JSONExceptionResponse.ErrorListener也没有放出任何东西。 I am using plain http, no certs or anything.我使用的是普通的 http,没有证书或任何东西。 Ultimately I want to populate a Spinner with this data but for now I can't even get this most basic implementation to work.最终,我想用这些数据填充 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)
    }
}

This document explain the implementation of a VolleyWebService class: http://code.sunnyjohn.in/index.php/2020/12/24/retrieve-data-volley/本文档解释了 VolleyWebService class 的实现: http://code.sunnyjohn.in/index.php/2020/12/24/retrieve-data-volley/

You have to instantiate the class, create a new request queue and then add to the request queue.您必须实例化 class,创建一个新的请求队列,然后添加到请求队列。

First create custom VolleyWebService class as follows:首先创建自定义 VolleyWebService class 如下:

class VolleyWebService constructor(context: Context) {
    private var INSTANCE: VolleyWebService? = null
           companion object {
            @Volatile
            private var INSTANCE: VolleyWebService? = null
            fun getInstance(context: Context) =
                INSTANCE ?: synchronized(this) {
                    INSTANCE ?: VolleyWebService(context).also {
                        INSTANCE = it
                    }
                }
        }
    
    val requestQueue: RequestQueue by lazy {
                Volley.newRequestQueue(context.applicationContext)
    }

    fun <T> addToRequestQueue(req: Request<T>) {
        requestQueue.add(req)
    }
}

Then modify your function getAllProfessions like this:然后像这样修改您的 function getAllProfessions:

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() })
//changes made here
      VolleyWebService.getInstance(context).addToRequestQueue(request)  
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM