Value <br of type java.lang.String cannot be converted to JSONObject on android

后端 未结 2 818
野性不改
野性不改 2020-11-30 14:45

This is my java code and i am getting problem in this: W/System.err(1362): org.json.JSONException: Value

public class Main extends Activity {

    // label to d         


        
2条回答
  •  甜味超标
    2020-11-30 15:09

    You have to edit the php configuration file.

    Find the line:

    error_reporting = E_ALL
    

    and replace with:

    error_reporting = E_ALL ^ E_DEPRECATED
    

    If you don't have access to the configuration file you can add this line to the php wordpress file (maybe headers.php):

    error_reporting(E_ALL ^ E_DEPRECATED);
    

提交回复
热议问题