如何比较整数字段和json字段?

时间:2015-04-28 05:18:10

标签: android json android-edittext

我有以下json响应,从这个响应我得到unitprice和boxqty,1500和1两个不同的edittext,现在我正在尝试的是如果用户将boxqty从1更改为15,那么单位价格应该从1500到1470,以下是我的代码片段,

{"status":"success","clientproduct":[{"pid":"4","name":"kangan pair","unitprice":"1500","boxqty":"1","bulkprice":[{"minqty":"10","price":"1500"},{"minqty":"15","price":"1470"},{"minqty":"20","price":"1460"}]}]}

MainActivity.java

     @Override
    protected String doInBackground(String...args) {
        //Check for success tag
        //int success;
        Looper.prepare();

         try {
             List<NameValuePair> params = new ArrayList<NameValuePair>();
             params.add(new BasicNameValuePair("cid",letss));
             params.add(new BasicNameValuePair("action", "clientproduct"));

             System.out.println("su gayu server ma????"+params);

             Log.d("request!", "starting");
             // getting product details by making HTTP request
             JSONObject json = jsonParser.makeHttpRequest (
                 FEEDBACK_URL, "POST", params);
             //check your log for json response
             Log.d("Login attempt", json.toString());
            if (json != null) {
                try {
                    JSONObject jsonObj = new JSONObject(json.toString());
                    // Getting JSON Array node
                    clientproduct = jsonObj.getJSONArray(CLIENTPRODUCT_LIST);
                    // looping through All Contacts
                    for (int i = 0; i < clientproduct.length(); i++) {
                       ck = clientproduct.getJSONObject(i);
                       unitp=ck.getString("unitprice");
                        System.out.println("Unit ni price"+unitp);
                       boxq=ck.getString("boxqty");
                        System.out.println("Box ni quantity "+boxq);

                        bulkprice = ck.getJSONArray(BULKPRICE_LIST);

                        allqtys=new ArrayList<Integer>();
                         for (int b=0 ; b < bulkprice.length(); b++)
                         {
                             jo = bulkprice.getJSONObject(b);

                           minimum_qty=jo.getInt("minqty");
                        allqtys.add(minimum_qty);
                            /* allqtys=new ArrayList<String>();
                           allqtys.add(minimum_qty.toString());
                          System.out.println("All MinQuantitiy"+minimum_qty);*/
                     System.out.println("All MinQuantitiy"+allqtys);
                       System.out.println("MinQuantitiy"+minimum_qty);

                           pricess=jo.getString("price");
                            System.out.println("Box price "+pricess);

                         }
                         /*conrs=Integer.parseInt(allqtys.toString());
                         System.out.println("Integer converted arrray"+conrs);*/

                        /* newList = new ArrayList<Integer>(allqtys.size()) ;
                         for (String myInt : allqtys) 
                         { 
                           newList.add(Integer.valueOf(myInt)); 
                         }
                         System.out.println("allqtys "+newList);*/

                        System.out.println("Not Null");
                    }
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            } else {
                Log.e("ServiceHandler", "Couldn't get any data from the url");
            }


         return json.getString(FEEDBACK_SUCCESS);

     }catch (JSONException e) {
         e.printStackTrace();
     }
     return null;
}

    // After completing background task Dismiss the progress dialog

    protected void onPostExecute(String file_url) {
        //dismiss the dialog once product deleted
        pDialog.dismiss();

       /* ArrayList<Integer> allval=new ArrayList<Integer>();
       // allval.add(minimum_qty);
       System.out.println("Integer converted arraylist"+allval);*/


        autoproduct.setOnItemClickListener(new OnItemClickListener() {

            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                // TODO Auto-generated method stub
                // uprice.setText(unitp);
                    //bxqtyy.setText(boxq);
            }
        });


        bxqtyy.addTextChangedListener(new TextWatcher() {

            @Override
            public void onTextChanged(CharSequence s, int start, int before, int count) {
                // TODO Auto-generated method stub
                if(Integer.parseInt(bxqtyy.getText().toString()) > Integer.parseInt(allqtys.get(index)))
                {
                    if(bxqtyy.getText().equals(null))
                    {
                        uprice.setText(unitp);
                    }
                    uprice.setText("1470");
                    //System.out.println("lets check");
                }
                else
                {
                    uprice.setText("1500");
                    System.out.println("lets check");
                }
            }

            @Override
            public void beforeTextChanged(CharSequence s, int start, int count,
                    int after) {
            }

            @Override
            public void afterTextChanged(Editable s) {

            }
        });

}}

1 个答案:

答案 0 :(得分:0)

此行if(bxqtyy.getText().toString() > minimum_qty.compareTo(BOX_QTY))无效,因为您无法将字符串与整数进行比较,特别是&#34;&gt;&#34;运算符将抛出编译时错误。

使用此

Integer.parseInt(your text here);

和适当的代码

if(Integer.parseInt(bxqtyy.getText().toString()) > minimum_qty.compareTo(BOX_QTY))
    {

    }
希望这会有所帮助。

相关问题