123

What is this error ? How can I fix this? My app is running but can't load data. And this is my Error: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $

This is my fragment :

public class news extends Fragment {


private RecyclerView recyclerView;
private ArrayList<Deatails> data;
private DataAdapter adapter;
private View myFragmentView;



@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    myFragmentView = inflater.inflate(R.layout.news, container, false);
    initViews();
    return myFragmentView;

}


private void initViews() {
    recyclerView = (RecyclerView) myFragmentView.findViewById(R.id.card_recycler_view);
    RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(getActivity().getApplicationContext());
    recyclerView.setHasFixedSize(true);
    recyclerView.setLayoutManager(layoutManager);
    data = new ArrayList<Deatails>();
    adapter = new DataAdapter(getActivity(), data);
    recyclerView.setAdapter(adapter);

    new Thread()
    {
        public void run()
        {
            getActivity().runOnUiThread(new Runnable() {
                @Override
                public void run() {
                    loadJSON();
                }
            });

        }
    }
    .start();
}

private void loadJSON() {
    if (isNetworkConnected()){

        HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
        interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
        OkHttpClient client = new OkHttpClient.Builder()
                .addInterceptor(interceptor)
                .retryOnConnectionFailure(true)
                .connectTimeout(15, TimeUnit.SECONDS)
                .build();

        Gson gson = new GsonBuilder()
                .setLenient()
                .create();
        
        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl("http://www.memaraneha.ir/")
                .client(client)
                .addConverterFactory(GsonConverterFactory.create(gson))
                .build();
        
        RequestInterface request = retrofit.create(RequestInterface.class);
        Call<JSONResponse> call = request.getJSON();
        final ProgressDialog progressDialog = new ProgressDialog(getActivity());
        progressDialog.show();
        call.enqueue(new Callback<JSONResponse>() {
            @Override
            public void onResponse(Call<JSONResponse> call, Response<JSONResponse> response) {
                progressDialog.dismiss();
                JSONResponse jsonResponse = response.body();
                data.addAll(Arrays.asList(jsonResponse.getAndroid()));
                adapter.notifyDataSetChanged();
            }
            @Override
            public void onFailure(Call<JSONResponse> call, Throwable t) {
                progressDialog.dismiss();
                Log.d("Error", t.getMessage());
            }
        });
    }
    else {
        Toast.makeText(getActivity().getApplicationContext(), "Internet is disconnected", Toast.LENGTH_LONG).show();}
}
private boolean isNetworkConnected() {
    ConnectivityManager cm = (ConnectivityManager) getActivity().getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo ni = cm.getActiveNetworkInfo();
    if (ni == null) {
        // There are no active networks.
        return false;
    } else
        return true;
}
}

RequestInterface :

public interface RequestInterface {

@GET("Erfan/news.php")
Call<JSONResponse> getJSON();
}

a

UPDATE (read below text and find your problem)

  • always this error not about your json , it could become from your wrong request , for better handle first check your request in postman if you got response then compare your json response with your model if nothing is wrong then this error come from your wrong request , also it could happened when your response not josn (in some cases response could be html)
Erfan
  • 2,344
  • 3
  • 19
  • 45
  • Please show the output that you receive from `response.body()` – OneCricketeer Oct 07 '16 at 13:49
  • @cricket_007 i edit my question and show my results – Erfan Oct 08 '16 at 08:23
  • I didn't ask for images. I asked you to print out the value that is maybe returned from the server. – OneCricketeer Oct 08 '16 at 08:25
  • 1
    How do you print a value in Java? `System.out.println`, yes? In Android you can use the `Log` class, but that doesn't matter. You aren't getting data or an error is occurring at or around `JSONResponse jsonResponse = response.body();`. I don't know how to fix your error becuase it could be networking related. You should be able to inspect that value on your own. – OneCricketeer Oct 08 '16 at 08:50
  • I'm not a pro either, I'm trying to teach you how to debug any Java application, nothing really Android specific – OneCricketeer Oct 08 '16 at 16:00
  • I'm getting this issue for XML Response not for JSON Response. – Prasad Mar 08 '17 at 06:05
  • if your JSON formats are okay check your database queries. Try changing them and retry – Shabbir Ahmed Nov 09 '18 at 11:19

10 Answers10

223

This is a well-known issue and based on this answer you could add setLenient:

Gson gson = new GsonBuilder()
        .setLenient()
        .create();

Retrofit retrofit = new Retrofit.Builder()
        .baseUrl(BASE_URL)
        .client(client)
        .addConverterFactory(GsonConverterFactory.create(gson))
        .build();

Now, if you add this to your retrofit, it gives you another error:

com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $

This is another well-known error you can find answer here (this error means that your server response is not well-formatted); So change server response to return something:

{
    android:[
        { ver:"1.5", name:"Cupcace", api:"Api Level 3" }
        ...
    ]
}

For better comprehension, compare your response with Github api.

Suggestion: to find out what's going on to your request/response add HttpLoggingInterceptor in your retrofit.

Based on this answer your ServiceHelper would be:

private ServiceHelper() {
        httpClient = new OkHttpClient.Builder();
        HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
        interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
        httpClient.interceptors().add(interceptor);
        Retrofit retrofit = createAdapter().build();
        service = retrofit.create(IService.class);
    }

Also don't forget to add:

compile 'com.squareup.okhttp3:logging-interceptor:3.3.1'
Amir
  • 13,841
  • 10
  • 67
  • 104
  • i edit my question look . but give same error : Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $ . also add error pic in question – Erfan Oct 13 '16 at 09:12
  • @erfan see edited answer; The issue is because your response from server is **Not** correct; remove " around attribute name and issue will be fixed. – Amir Oct 13 '16 at 09:46
  • 1
    { android:[ { ver:"1.5", name:"Cupcace", api:"Api Level 3" , pic:"pic2.jpg"} ] } this is my json exact like ur example and still same error :'( – Erfan Oct 13 '16 at 12:05
  • {"android": [ {"ver":"1.5","name":"Cupcace","api":"level3","pic":"bane.jpg"}]} , fix with this way – Erfan Oct 13 '16 at 12:22
  • 3
    use this and it will tell you immediately why your json is wrong http://jsonlint.com/ – Saik Caskey Feb 28 '17 at 16:56
  • Dear @Amir I am using retrofit in android apk to get a simple json like `{"ip":"192.167.1.15"}` from `Restful EJB web service with jboss EAP 7.1` in the backend. However I get “Expected BEGIN_OBJECT but was STRING at line 1 column 1” Please help me... This is my web service: @Stateless @Path("/getflashcard") public class GetFlashcard { @Interceptors(Validator.class) @GET @Produces(MediaType.APPLICATION_JSON) public String getFlashcard() { String jsonString = new JSONObject().put("ip", "192.167.1.15").toString(); return jsonString; } } – Hosein Aqajani Apr 02 '18 at 08:42
  • I used Call , and logged to see the output as response.body().string() with try/catch – ashishdhiman2007 May 21 '18 at 13:00
  • For me its simple. Just use the function echo json_encode($arrayName); instead of print_r($arrayName); With my php api. – Jevon May 23 '20 at 02:29
  • I am facing this same issue. But I tested my api in postman it's response is correct but why I am getting this error? can someone please tell me how to rectify it.. – Muthukumaaran Chandramohan Jun 26 '20 at 17:50
13

Also this issue occurres when the response contenttype is not application/json. In my case response contenttype was text/html and i faced this problem. I changed it to application/json then it worked.

Ali Gürelli
  • 2,383
  • 2
  • 21
  • 33
7

There was an error in understanding of return Type Just add Header and it will solve your problem

@Headers("Content-Type: application/json")
Jahanzaib
  • 134
  • 1
  • 3
7

Using Moshi:

When building your Retrofit Service add .asLenient() to your MoshiConverterFactory. You don't need a ScalarsConverter. It should look something like this:

return Retrofit.Builder()
                .client(okHttpClient)
                .baseUrl(ENDPOINT)
                .addConverterFactory(MoshiConverterFactory.create().asLenient())
                .build()
                .create(UserService::class.java)
André Ramon
  • 872
  • 6
  • 20
4

I had same issue along with https://stackoverflow.com/a/57245058/8968137 and both solved after fixing the google-services.json

Raj
  • 723
  • 7
  • 14
1

I have faced this problem and I made research and didn't get anything, so I was trying and finally, I knew the cause of this problem. the problem on the API, make sure you have a good variable name I used $start_date and it caused the problem, so I try $startdate and it works!

as well make sure you send all parameter that declare on API, for example, $startdate = $_POST['startdate']; $enddate = $_POST['enddate'];

you have to pass this two variable from the retrofit.

as well if you use date on SQL statement, try to put it inside '' like '2017-07-24'

I hope it helps you.

Momen Zaqout
  • 1,313
  • 1
  • 12
  • 14
1

In my case ; what solved my issue was.....

You may had json like this, the keys without " double quotations....

{ name: "test", phone: "2324234" }

So try any online Json Validator to make sure you have right syntax...

Json Validator Online

shareef
  • 7,886
  • 12
  • 53
  • 80
1

I solved this problem very easily after finding out this happens when you aren't outputting a proper JSON object, I simply used the echo json_encode($arrayName); instead of print_r($arrayName); With my php api.

Every programming language or at least most programming languages should have their own version of the json_encode() and json_decode() functions.

Jevon
  • 219
  • 2
  • 12
0

This issue started occurring for me all of a sudden, so I was sure, there could be some other reason. On digging deep, it was a simple issue where I used http in the BaseUrl of Retrofit instead of https. So changing it to https solved the issue for me.

Shubhral
  • 255
  • 2
  • 15
0

Also worth checking is if there are any errors in the return type of your interface methods. I could reproduce this issue by having an unintended return type like Call<Call<ResponseBody>>

Otieno Rowland
  • 1,898
  • 1
  • 23
  • 30