在文本编辑中设置文本“未找到结果”

时间:2018-12-21 09:54:01

标签: kotlin android-asynctask textedit

需要您的帮助来修改我的代码,我试图通过数据json搜索航班号来构建包含航班时刻表的应用程序。我正在使用编辑文本以及AsyncTask和自定义列表适配器列表视图。我的应用程序运行正常,但是问题是当用户以错误的方式输入航班号时,我得到了FATAL EXCEPTION。因为当用户输入正确的航班号时,数据json url具有数据数组,因此,如果用户输入错误的航班号,则其他方式将返回jsonobject中的数据json url,并且得到FATAL EXCEPTION

E/AndroidRuntime: FATAL EXCEPTION: main
Process: com.iraqairoirt.iraqairports, PID: 5380
java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1386)
 Caused by: java.lang.reflect.InvocationTargetException
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1496)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1386) 
 Caused by: org.json.JSONException: Value null of type org.json.JSONObject$1 cannot be converted to JSONArray
    at org.json.JSON.typeMismatch(JSON.java:111)
    at org.json.JSONArray.<init>(JSONArray.java:96)
    at org.json.JSONArray.<init>(JSONArray.java:108)
    at com.iraqairoirt.iraqairports.BaghdadAirport.FlightSearch$Arr.handleJson(FlightSearch.kt:106)
    at com.iraqairoirt.iraqairports.BaghdadAirport.FlightSearch$Arr.onPostExecute(FlightSearch.kt:90)
    at com.iraqairoirt.iraqairports.BaghdadAirport.FlightSearch$Arr.onPostExecute(FlightSearch.kt:58)
    at android.os.AsyncTask.finish(AsyncTask.java:660)
    at android.os.AsyncTask.-wrap1(AsyncTask.java)
    at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:677)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:154)
    at android.app.ActivityThread.main(ActivityThread.java:6776)
    at java.lang.reflect.Method.invoke(Native Method) 
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1496) 
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1386) 

如果输入正确,则为数据json l获取数据数组

{
  "result": {
    "request": {},
    "response": {
      "data": [
        {
          "identification": {
            "id": null,
            "row": 4849651452,
            "callsign": null,
            "codeshare": null
          },
          "status": {
            "live": false,
            "text": "Scheduled",
            "icon": null,
            "estimated": null,
            "ambiguous": false
          }
        }
      ]
    }
  }
}

如果输入错误,则会获取数据json对象和致命异常

{
  "result": {
    "request": {},
    "response": {
      "data": null
    }
  }
}

包括列表适配器在内的课堂活动

class FlightSearch : AppCompatActivity() {

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.activity_flight_search)
        flightlistlaout.bringToFront()

    }

    fun getflightsearchresult(view:View){

        val FlightNumber=flightnumbertext.text.toString()
//        val auto=autoCompleteTextView.text.toString()

        if(FlightNumber.trim().length>0) {
            val url = "flight/list.json?query="+FlightNumber+"&fetchBy=flight&page=1&limit=100&token="
            Arr().execute(url)

            Toast.makeText(applicationContext, "Message : ", Toast.LENGTH_SHORT).show()
        }else{
            Toast.makeText(applicationContext, "Please enter some message! ", Toast.LENGTH_SHORT).show()
        }
    }
    inner class Arr : AsyncTask<String, String, String>() {


        override fun onPreExecute() {
            super.onPreExecute()


        }

        //        for build connection
        override fun doInBackground(vararg url: String?): String {

            var text: String
            val connection = URL(url[0]).openConnection() as HttpURLConnection
            connection.connectTimeout = 700

            try {
                connection.connect()
                text = connection.inputStream.use { it.reader().use { reader -> reader.readText() } }


            } finally {

                connection.disconnect()

            }
            return text
        }

        override fun onPostExecute(result: String?) {

            super.onPostExecute(result)
            handleJson(result)


        }

        override fun onProgressUpdate(vararg text: String?) {


        }

        @SuppressLint("WrongViewCast")
        private fun handleJson(jsonString: String?) {

            val jsonObj = JSONObject(jsonString)
            val result = jsonObj.getJSONObject("result")
            val response = result.getJSONObject("response")
            val jsonArray = JSONArray(response.get("data").toString())


                        val list = ArrayList<FlightShdu>()
                        var x = 0
                        while (x < jsonArray.length()) {

                            val jsonObject = jsonArray.getJSONObject(x)


                            list.add(
                                FlightShdu(
                                    jsonObject.getJSONObject("identification").getJSONObject("number").getString("default"),
                                    jsonObject.getJSONObject("airline").getString("name"),
                                    jsonObject.getJSONObject("status").getJSONObject("generic").getJSONObject("status").getString(
                                        "text"
                                    ),
                                    jsonObject.getJSONObject("airline").getJSONObject("code").getString("icao"),
                                    jsonObject.getJSONObject("time").getJSONObject("scheduled").getString("arrival"),
                                    jsonObject.getJSONObject("airport").getJSONObject("origin").getJSONObject("code").getString(
                                        "iata"


                            x++
                        }
                        list.forEach(::println)

                        var adapter = FlightSearchAdpater(this@FlightSearch, list)
                        flightsearchlists.adapter = adapter
        }





        }


    }
    class FlightSearchAdpater (val context: Context, val list: ArrayList<FlightShdu>): BaseAdapter() {


        @SuppressLint("ViewHolder", "NewApi", "WrongViewCast")
        override fun getView(p0: Int, convertView: View?, parent: ViewGroup?): View {

            val view : View = LayoutInflater.from(context).inflate(R.layout.baghdad_arrivel_list,parent,false)

            val list = list[p0]
            val LogoAriline = view.findViewById(R.id.logo_image) as ImageView
            val status = view.findViewById(R.id.ali_id) as AppCompatTextView
            val Airport = view.findViewById(R.id.airportid) as AppCompatTextView
            val code = view.findViewById(R.id.code_id) as AppCompatTextView
            val TimeFlight = view.findViewById(R.id.time_id) as AppCompatTextView
            val checkiflive = view.checkifliveTextId
            view.callsign_id.text=list.Callsign
            view.airline_id.text=list.Airline
            code.text = list.code
            view.ali_id.text=list.Stauts
            status.text= list.Stauts
            TimeFlight.text = getDateTime(list.TimeFlight)

            Picasso.with(context).load(Uri.parse("/data/operators/"+status.text.toString()+"_logo0.png"))
                .error(R.drawable.logo).into(LogoAriline)

            Airport.text= list.Airport
            view.model_id.text=list.Model
            checkiflive.text=list.IfLive




        private fun getDateTime(s: String): String? {
            try {
                val sdf = SimpleDateFormat("EE, MMM d KK:mm a")
                val netDate = Date(s.toLong() * 1000)
                return sdf.format(netDate)
            } catch (e: Exception) {
                return e.toString()

            }
        }

        override fun getItem(p0: Int): Any {
            return list [p0]
        }

        override fun getItemId(p0: Int): Long {
            return p0.toLong()
        }

        override fun getCount(): Int {
            return list.size
        }



    }

当轨道FATAL EXCEPTION: main在第106行中使用此代码val jsonArray = JSONArray(response.get("data").toString())找到主要问题时

请与代码人回答,当用户输入错误信息时,我想添加文本,他会得到响应示例“找不到航班,请确保航班号”

谢谢

2 个答案:

答案 0 :(得分:1)

  

由以下原因引起:org.json.JSONException:类型的值null   org.json.JSONObject $ 1无法转换为JSONArray

您应检查 getJSONArray 是否为空

如果您的Json "data":[]

,以下代码将可用
  val jsonData  = response.getJSONArray("data")
    if(jsonData.length()!=0)
    {
        // Do your work        
    }

仅供参考

您应检查您的Json数据 JSONArray String

 Object dataVal= response.get("data");
     if (dataValis is JSONArray)
        {
              // Your code                 
        }
     else
      { 
           // null value
      }

答案 1 :(得分:0)

l发现了这种方法,并且工作正常

export const fetchPaymentsByUserId = (id, auctionsCompleted) => {
  return (dispatch) =>
    new Promise(function(resolve, reject) {
      dispatch(fetchChittiePaymentStart());
      let totalAmount = 0;
      db.fetchChittiePaymentsByUserId(id).then((snapshot) => {
        let chittiePayments = {};
        if (snapshot.val()) {
          chittiePayments = snapshot.val();
          Object.keys(chittiePayments).map((key) => {
            if (parseInt(chittiePayments[key].paymentMonth) <= auctionsCompleted) {
              totalAmount += chittiePayments[key].dueAmountPaid;
            }
          });
          console.log('totalAmount', totalAmount);
        }
        resolve(totalAmount);
        dispatch(fetchChittiePaymentSuccess());
      }).catch((error) => {
        reject(error);
      });
    });