第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用JsonReader.setLenient(true)在第1行第1列路徑$接受格式錯誤的JSON

使用JsonReader.setLenient(true)在第1行第1列路徑$接受格式錯誤的JSON

慕后森 2019-12-26 13:46:11
這是什么錯誤?我怎樣才能解決這個問題?我的應(yīng)用程序正在運行,但無法加載數(shù)據(jù)。這是我的錯誤:使用JsonReader.setLenient(true)在第1行第1列路徑$接受格式錯誤的JSON這是我的片段:public class news extends Fragment {private RecyclerView recyclerView;private ArrayList<Deatails> data;private DataAdapter adapter;private View myFragmentView;@Overridepublic 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();總是這個錯誤與您的json無關(guān),可能是來自錯誤的請求,為了更好地處理,首先請在郵遞員中檢查您的請求(如果您得到了響應(yīng)),然后將您的json響應(yīng)與您的模型進行比較(如果沒有錯誤的話),則該錯誤來自錯誤的請求,當(dāng)您的響應(yīng)未啟動時也可能發(fā)生(在某些情況下響應(yīng)可能是html)
查看完整描述

3 回答

?
江戶川亂折騰

TA貢獻1851條經(jīng)驗 獲得超5個贊

當(dāng)響應(yīng)內(nèi)容類型不是時,也會發(fā)生此問題application/json。在我的情況下,響應(yīng)內(nèi)容類型為text/html,我遇到了這個問題。我將其更改為application/json工作。


查看完整回答
反對 回復(fù) 2019-12-26
  • 3 回答
  • 0 關(guān)注
  • 2180 瀏覽

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號