(intent.getStringExtra(" PaymentDetails")为null

时间:2018-01-09 13:35:45

标签: android json paypal

我将PayPal SDK添加到我的应用程序中,但我遇到了一个问题。 当我想查看付款细节时,应用程序将崩溃。

    import android.content.Intent;
    import android.support.v7.app.AppCompatActivity;
    import android.os.Bundle;
    import android.widget.TextView;
    import android.widget.Toast;

    import org.json.JSONException;
    import org.json.JSONObject;

 public class PaymentDeatils extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_payment_deatils);

    //Getting Intent
    Intent intent = getIntent();

    try {
         JSONObject jsonDetails = new 
    JSONObject(intent.getStringExtra("PaymentDetails"));
         showDetails(jsonDetails.getJSONObject("response"), 
    intent.getStringExtra("PaymentAmount"));

    } catch (JSONException e) {
        Toast.makeText(this, e.getMessage(), Toast.LENGTH_SHORT).show();
    }
}

private void showDetails(JSONObject jsonDetails, String paymentAmount) 
throws JSONException {
    //Views
    TextView txtId = (TextView) findViewById(R.id.txtId);
    TextView textViewStatus= (TextView) findViewById(R.id.txtAnount);
    TextView txtStatus = (TextView) findViewById(R.id.txtStatus);

    //Showing the details from json object
    txtId .setText(jsonDetails.getString("id"));
    textViewStatus.setText(jsonDetails.getString("state"));
    txtStatus.setText(paymentAmount);
}
}

我这里有问题

   JSONObject jsonDetails = new JSONObject(intent.getStringExtra("PaymentDetails"));

intent.getStringExtra(" PaymentDetails")可能为null。我怎么解决它?

控制台出错。

  java.lang.NullPointerException: Attempt to invoke virtual method 'int 
  java.lang.String.length()' on a null object reference

1 个答案:

答案 0 :(得分:1)

正如阿卜杜勒所说,我们也需要看到发送活动。此外,getIntent.getStringExtra还支持在键之后设置默认值,这至少可以减少空异常崩溃的可能性。