Chandeshwar Thakur
Chandeshwar Thakur

Reputation: 73

getting error org.json.JSONException: Value <pre of type java.lang.String cannot be converted to JSONObject

I want to access my Android apps through Web-Service. but getting error in my android app ,

i am using volley & POST method for login.. `public class Main extends AppCompatActivity implements View.OnClickListener { public static final String LOGIN_URL = "http://10.54.103.8:4067/evivaservices/Webservices/login";

public static final String KEY_USERNAME="username";
public static final String KEY_PASSWORD="password";

private EditText editTextUsername;
private EditText editTextPassword;
private Button buttonLogin;

private String username;
private String password;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.login_layout);

    editTextUsername = (EditText) findViewById(R.id.username1);
    editTextPassword = (EditText) findViewById(R.id.password1);

    buttonLogin = (Button) findViewById(R.id.login_button);

    buttonLogin.setOnClickListener(this);
}
private void userLogin() {
    username = editTextUsername.getText().toString().trim();
    password = editTextPassword.getText().toString().trim();

    StringRequest stringRequest = new StringRequest(Request.Method.POST, LOGIN_URL,
            new Response.Listener<String>() {
                @Override
                public void onResponse(String response) {
                    try
                    {
                        JSONObject jsonObject = new JSONObject(response);
                        Next();
                    }
                    catch(JSONException e)
                    {
                    e.printStackTrace();
                    }
                }
            },
            new Response.ErrorListener() {
                @Override
                public void onErrorResponse(VolleyError error) {
                    Toast.makeText(getApplicationContext(),error.toString(), Toast.LENGTH_LONG ).show();
                }
            }){
        @Override
        protected Map<String, String> getParams() throws AuthFailureError {
            Map<String,String> map = new HashMap<String,String>();
            map.put(KEY_USERNAME,username);
            map.put(KEY_PASSWORD,password);
            return map;
        }
    };

    RequestQueue requestQueue = Volley.newRequestQueue(this);
    requestQueue.add(stringRequest);
}

private void Next(){
    Intent intent = new Intent(this, HomeScreen.class);
    intent.putExtra(KEY_USERNAME, username);
    startActivity(intent);
}
@Override
public void onClick(View v)
{
userLogin();
}

} `

JSON DATA


{
  "id": 31,
  "username": "[email protected]",
  "user_image": "http:\/\/103.54.103.8:4067\/evivaservices\/img\/profile_31.png",
  "err-code": 0
}

`

Upvotes: 0

Views: 563

Answers (3)

AndiGeeky
AndiGeeky

Reputation: 11474

Please change your StringRequest to JsonRequest as below:

 JsonRequest jsonRequest = new JsonRequest(Request.Method.POST, LOGIN_URL, new Response.Listener<>() {
        @Override
        public void onResponse(Object response) {
            try {
                Next();
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            Toast.makeText(getApplicationContext(), error.toString(), Toast.LENGTH_LONG).show();
        }
    }) {
        @Override
        protected Map<String, String> getParams() throws AuthFailureError {
            Map<String, String> map = new HashMap<String, String>();
            map.put(KEY_USERNAME, username);
            map.put(KEY_PASSWORD, password);
            return map;
        }

        @Override
        protected Response parseNetworkResponse(NetworkResponse response) {
            return null;
        }

        @Override
        public int compareTo(Object another) {
            return 0;
        }
    };

Thank You.

Upvotes: 1

cake double
cake double

Reputation: 60

In you JSON DATA, I not find array, so you shouldn't use JsonArray, you can delete this line in your code :JSONArray jsonArray=jsonObject.getJSONArray("err-code").

Upvotes: 0

Ashish P
Ashish P

Reputation: 3056

Hello dear you made a mistake while you parsing the response

 JSONArray jsonArray=jsonObject.getJSONArray("err-code")

remove above the line and then parse again.

Upvotes: 0

Related Questions