How to add the data from an api without Pojohow to implement Jquery datatable in android any library?How to randomly select an item from a list?How do I create a Java string from the contents of a file?How do I get a consistent byte representation of strings in C# without manually specifying an encoding?How do I remove an element from a list by index in Python?How to get the filename without the extension from a path in Python?How do I trim whitespace from a Python string?How do I pass data between Activities in Android application?How do I get extra data from intent on Android?How to add dividers and spaces between items in RecyclerView?org.json.JSONException in volley
How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?
In a spin, are both wings stalled?
Why can't we play rap on piano?
How to take photos in burst mode, without vibration?
What mechanic is there to disable a threat instead of killing it?
How do conventional missiles fly?
What is the word for reserving something for yourself before others do?
Would Slavery Reparations be considered Bills of Attainder and hence Illegal?
Took a trip to a parallel universe, need help deciphering
How can I fix/modify my tub/shower combo so the water comes out of the showerhead?
1960's book about a plague that kills all white people
Western buddy movie with a supernatural twist where a woman turns into an eagle at the end
Brothers & sisters
How do I write bicross product symbols in latex?
90's TV series where a boy goes to another dimension through portal near power lines
What about the virus in 12 Monkeys?
What reasons are there for a Capitalist to oppose a 100% inheritance tax?
What killed these X2 caps?
Why is the 'in' operator throwing an error with a string literal instead of logging false?
Forgetting the musical notes while performing in concert
What do you call someone who asks many questions?
Infinite Abelian subgroup of infinite non Abelian group example
Anagram holiday
Can one be a co-translator of a book, if he does not know the language that the book is translated into?
How to add the data from an api without Pojo
how to implement Jquery datatable in android any library?How to randomly select an item from a list?How do I create a Java string from the contents of a file?How do I get a consistent byte representation of strings in C# without manually specifying an encoding?How do I remove an element from a list by index in Python?How to get the filename without the extension from a path in Python?How do I trim whitespace from a Python string?How do I pass data between Activities in Android application?How do I get extra data from intent on Android?How to add dividers and spaces between items in RecyclerView?org.json.JSONException in volley
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I am getting data from an api which cannot be converted into pojo so am not able to get the data in a normal manner
Data that i am getting
{"TABLE_DATA":"
{"data":[
["Tiger Nixon","System
Architect","Edinburgh","5421","2011/04/25","$320,800"],
["Garrett
Winters","Accountant","Tokyo","8422","2011/07/25","$170,750"],
["Ashton Cox","Junior Technical
Author","SanFrancisco","1562","2009/01/12","$86,000"],
["Cedric Kelly","Senior Javascript
Developer","Edinburgh","6224","2012/03/29","$433,060"],
["Airi
Satou","Accountant","Tokyo","5407","2008/11/28","$162,700"],
["Brielle Williamson","Integration Specialist","New
York","4804","2012/12/02","$372,000"],
["Herrod Chandler","Sales Assistant","San
Francisco","9608","2012/08/06","$137,500"],
["Rhona Davidson","Integration
Specialist","Tokyo","6200","2010/10/14","$327,900"],
["Colleen Hurst","Javascript Developer","San
Francisco","2360","2009/09/15","$205,500"],
["Sonya Frost","Software
Engineer","Edinburgh","1667","2008/12/13","$103,600"],
["Jena Gaines","Office
Manager","London","3814","2008/12/19","$90,560"]`
there is no pojo available This is my first time working in an API any guide will be helpful. I am receiving the following data using retofit and rxjava2.
Data format is post method .
android string list api arraylist
add a comment |
I am getting data from an api which cannot be converted into pojo so am not able to get the data in a normal manner
Data that i am getting
{"TABLE_DATA":"
{"data":[
["Tiger Nixon","System
Architect","Edinburgh","5421","2011/04/25","$320,800"],
["Garrett
Winters","Accountant","Tokyo","8422","2011/07/25","$170,750"],
["Ashton Cox","Junior Technical
Author","SanFrancisco","1562","2009/01/12","$86,000"],
["Cedric Kelly","Senior Javascript
Developer","Edinburgh","6224","2012/03/29","$433,060"],
["Airi
Satou","Accountant","Tokyo","5407","2008/11/28","$162,700"],
["Brielle Williamson","Integration Specialist","New
York","4804","2012/12/02","$372,000"],
["Herrod Chandler","Sales Assistant","San
Francisco","9608","2012/08/06","$137,500"],
["Rhona Davidson","Integration
Specialist","Tokyo","6200","2010/10/14","$327,900"],
["Colleen Hurst","Javascript Developer","San
Francisco","2360","2009/09/15","$205,500"],
["Sonya Frost","Software
Engineer","Edinburgh","1667","2008/12/13","$103,600"],
["Jena Gaines","Office
Manager","London","3814","2008/12/19","$90,560"]`
there is no pojo available This is my first time working in an API any guide will be helpful. I am receiving the following data using retofit and rxjava2.
Data format is post method .
android string list api arraylist
add a comment |
I am getting data from an api which cannot be converted into pojo so am not able to get the data in a normal manner
Data that i am getting
{"TABLE_DATA":"
{"data":[
["Tiger Nixon","System
Architect","Edinburgh","5421","2011/04/25","$320,800"],
["Garrett
Winters","Accountant","Tokyo","8422","2011/07/25","$170,750"],
["Ashton Cox","Junior Technical
Author","SanFrancisco","1562","2009/01/12","$86,000"],
["Cedric Kelly","Senior Javascript
Developer","Edinburgh","6224","2012/03/29","$433,060"],
["Airi
Satou","Accountant","Tokyo","5407","2008/11/28","$162,700"],
["Brielle Williamson","Integration Specialist","New
York","4804","2012/12/02","$372,000"],
["Herrod Chandler","Sales Assistant","San
Francisco","9608","2012/08/06","$137,500"],
["Rhona Davidson","Integration
Specialist","Tokyo","6200","2010/10/14","$327,900"],
["Colleen Hurst","Javascript Developer","San
Francisco","2360","2009/09/15","$205,500"],
["Sonya Frost","Software
Engineer","Edinburgh","1667","2008/12/13","$103,600"],
["Jena Gaines","Office
Manager","London","3814","2008/12/19","$90,560"]`
there is no pojo available This is my first time working in an API any guide will be helpful. I am receiving the following data using retofit and rxjava2.
Data format is post method .
android string list api arraylist
I am getting data from an api which cannot be converted into pojo so am not able to get the data in a normal manner
Data that i am getting
{"TABLE_DATA":"
{"data":[
["Tiger Nixon","System
Architect","Edinburgh","5421","2011/04/25","$320,800"],
["Garrett
Winters","Accountant","Tokyo","8422","2011/07/25","$170,750"],
["Ashton Cox","Junior Technical
Author","SanFrancisco","1562","2009/01/12","$86,000"],
["Cedric Kelly","Senior Javascript
Developer","Edinburgh","6224","2012/03/29","$433,060"],
["Airi
Satou","Accountant","Tokyo","5407","2008/11/28","$162,700"],
["Brielle Williamson","Integration Specialist","New
York","4804","2012/12/02","$372,000"],
["Herrod Chandler","Sales Assistant","San
Francisco","9608","2012/08/06","$137,500"],
["Rhona Davidson","Integration
Specialist","Tokyo","6200","2010/10/14","$327,900"],
["Colleen Hurst","Javascript Developer","San
Francisco","2360","2009/09/15","$205,500"],
["Sonya Frost","Software
Engineer","Edinburgh","1667","2008/12/13","$103,600"],
["Jena Gaines","Office
Manager","London","3814","2008/12/19","$90,560"]`
there is no pojo available This is my first time working in an API any guide will be helpful. I am receiving the following data using retofit and rxjava2.
Data format is post method .
android string list api arraylist
android string list api arraylist
edited Mar 9 at 2:45
Neelay Srivastava
asked Mar 8 at 23:45
Neelay SrivastavaNeelay Srivastava
583831
583831
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
This is a jquery format. You may try to use this https://javacodegeeks.com/2013/02/jquery-datatables-and-java-integration.html
Look also this topic stackoverflow.com/questions/48942253/how-to-implement-jquery-datatable-in-android-any-library
The service you get data from may have an opportunity to set data format, you must specify it in your GET query, look in the API documentation.
I want to add the data in the array list the first link has pojo and the data i am getting there is no pojo the following data format is post method
– Neelay Srivastava
Mar 9 at 1:27
add a comment |
That looks a lot like a .csv file. CSV files were the old format of Comma Separated Values, built from Tabular data.
Each row is one object and each column is its attribute/field. You can read about CSV files here.
Approach 1
Filter out using string manipulation the extra symbols of slashes and quotes. Delimit at the square braces (more info here) and then reading each delimited comma separated value text by any CSV reading library. Here's a tutorial using Apache Commons CSV library to read CSV files in Java.
Approach 2
Instead of using any library, if your response set is small and you don't need as much parsing optimization, write your object class's constructor to take in each row, filter out the useless symbols (using string manipulation) and initialize your object's fields.
All steps involved:
- Clean response and remove unnecessary symbols using string manipulation.
- Build a POJO class to keep one row of the dataset. Have its constructor to take in the first row of your dataset to initialize its attributes.
- Build a list format or ArrayList format of your previous class with additional methods to sort, search or call by indices as required.
- Build a constructor for this list object class to read in your cleaned string response and iterate over it to build Employee objects and adding them to your list.
Sir i started with the csv files but the data is quite large through csv its is not possible as i can do it by other way but i will end up with just string with all the value I am asking here when i have gone through all the possible way like json array to string and many more way
– Neelay Srivastava
Mar 9 at 1:51
If your dataset is too large, are you sure you need to read all that data? A large data set is rarely used with an Android app, as device memory is very limited. What are you using the data for? If you're using it to just display it, then you might want to look into pagination: blog.iamsuleiman.com/…
– MD Naseem Ashraf
Mar 9 at 2:08
even if i try by the csv method i will end up having other symbols and the following output will not be saved in the array list
– Neelay Srivastava
Mar 9 at 2:17
That seems more like an issue with your regex filtering. Unless you clean your response, it cannot be read correctly by your methods or even parsing libraries. What is your use case with the dataset, if you can tell, we can see if we solve the issue any other way.
– MD Naseem Ashraf
Mar 9 at 2:20
I have to show the data into the listview or recycler view and a graph which represent the salary of people i can do these things once i get the data into arraylist
– Neelay Srivastava
Mar 9 at 2:24
|
show 4 more comments
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072534%2fhow-to-add-the-data-from-an-api-without-pojo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is a jquery format. You may try to use this https://javacodegeeks.com/2013/02/jquery-datatables-and-java-integration.html
Look also this topic stackoverflow.com/questions/48942253/how-to-implement-jquery-datatable-in-android-any-library
The service you get data from may have an opportunity to set data format, you must specify it in your GET query, look in the API documentation.
I want to add the data in the array list the first link has pojo and the data i am getting there is no pojo the following data format is post method
– Neelay Srivastava
Mar 9 at 1:27
add a comment |
This is a jquery format. You may try to use this https://javacodegeeks.com/2013/02/jquery-datatables-and-java-integration.html
Look also this topic stackoverflow.com/questions/48942253/how-to-implement-jquery-datatable-in-android-any-library
The service you get data from may have an opportunity to set data format, you must specify it in your GET query, look in the API documentation.
I want to add the data in the array list the first link has pojo and the data i am getting there is no pojo the following data format is post method
– Neelay Srivastava
Mar 9 at 1:27
add a comment |
This is a jquery format. You may try to use this https://javacodegeeks.com/2013/02/jquery-datatables-and-java-integration.html
Look also this topic stackoverflow.com/questions/48942253/how-to-implement-jquery-datatable-in-android-any-library
The service you get data from may have an opportunity to set data format, you must specify it in your GET query, look in the API documentation.
This is a jquery format. You may try to use this https://javacodegeeks.com/2013/02/jquery-datatables-and-java-integration.html
Look also this topic stackoverflow.com/questions/48942253/how-to-implement-jquery-datatable-in-android-any-library
The service you get data from may have an opportunity to set data format, you must specify it in your GET query, look in the API documentation.
answered Mar 9 at 1:23
Alexander GapanowichAlexander Gapanowich
2266
2266
I want to add the data in the array list the first link has pojo and the data i am getting there is no pojo the following data format is post method
– Neelay Srivastava
Mar 9 at 1:27
add a comment |
I want to add the data in the array list the first link has pojo and the data i am getting there is no pojo the following data format is post method
– Neelay Srivastava
Mar 9 at 1:27
I want to add the data in the array list the first link has pojo and the data i am getting there is no pojo the following data format is post method
– Neelay Srivastava
Mar 9 at 1:27
I want to add the data in the array list the first link has pojo and the data i am getting there is no pojo the following data format is post method
– Neelay Srivastava
Mar 9 at 1:27
add a comment |
That looks a lot like a .csv file. CSV files were the old format of Comma Separated Values, built from Tabular data.
Each row is one object and each column is its attribute/field. You can read about CSV files here.
Approach 1
Filter out using string manipulation the extra symbols of slashes and quotes. Delimit at the square braces (more info here) and then reading each delimited comma separated value text by any CSV reading library. Here's a tutorial using Apache Commons CSV library to read CSV files in Java.
Approach 2
Instead of using any library, if your response set is small and you don't need as much parsing optimization, write your object class's constructor to take in each row, filter out the useless symbols (using string manipulation) and initialize your object's fields.
All steps involved:
- Clean response and remove unnecessary symbols using string manipulation.
- Build a POJO class to keep one row of the dataset. Have its constructor to take in the first row of your dataset to initialize its attributes.
- Build a list format or ArrayList format of your previous class with additional methods to sort, search or call by indices as required.
- Build a constructor for this list object class to read in your cleaned string response and iterate over it to build Employee objects and adding them to your list.
Sir i started with the csv files but the data is quite large through csv its is not possible as i can do it by other way but i will end up with just string with all the value I am asking here when i have gone through all the possible way like json array to string and many more way
– Neelay Srivastava
Mar 9 at 1:51
If your dataset is too large, are you sure you need to read all that data? A large data set is rarely used with an Android app, as device memory is very limited. What are you using the data for? If you're using it to just display it, then you might want to look into pagination: blog.iamsuleiman.com/…
– MD Naseem Ashraf
Mar 9 at 2:08
even if i try by the csv method i will end up having other symbols and the following output will not be saved in the array list
– Neelay Srivastava
Mar 9 at 2:17
That seems more like an issue with your regex filtering. Unless you clean your response, it cannot be read correctly by your methods or even parsing libraries. What is your use case with the dataset, if you can tell, we can see if we solve the issue any other way.
– MD Naseem Ashraf
Mar 9 at 2:20
I have to show the data into the listview or recycler view and a graph which represent the salary of people i can do these things once i get the data into arraylist
– Neelay Srivastava
Mar 9 at 2:24
|
show 4 more comments
That looks a lot like a .csv file. CSV files were the old format of Comma Separated Values, built from Tabular data.
Each row is one object and each column is its attribute/field. You can read about CSV files here.
Approach 1
Filter out using string manipulation the extra symbols of slashes and quotes. Delimit at the square braces (more info here) and then reading each delimited comma separated value text by any CSV reading library. Here's a tutorial using Apache Commons CSV library to read CSV files in Java.
Approach 2
Instead of using any library, if your response set is small and you don't need as much parsing optimization, write your object class's constructor to take in each row, filter out the useless symbols (using string manipulation) and initialize your object's fields.
All steps involved:
- Clean response and remove unnecessary symbols using string manipulation.
- Build a POJO class to keep one row of the dataset. Have its constructor to take in the first row of your dataset to initialize its attributes.
- Build a list format or ArrayList format of your previous class with additional methods to sort, search or call by indices as required.
- Build a constructor for this list object class to read in your cleaned string response and iterate over it to build Employee objects and adding them to your list.
Sir i started with the csv files but the data is quite large through csv its is not possible as i can do it by other way but i will end up with just string with all the value I am asking here when i have gone through all the possible way like json array to string and many more way
– Neelay Srivastava
Mar 9 at 1:51
If your dataset is too large, are you sure you need to read all that data? A large data set is rarely used with an Android app, as device memory is very limited. What are you using the data for? If you're using it to just display it, then you might want to look into pagination: blog.iamsuleiman.com/…
– MD Naseem Ashraf
Mar 9 at 2:08
even if i try by the csv method i will end up having other symbols and the following output will not be saved in the array list
– Neelay Srivastava
Mar 9 at 2:17
That seems more like an issue with your regex filtering. Unless you clean your response, it cannot be read correctly by your methods or even parsing libraries. What is your use case with the dataset, if you can tell, we can see if we solve the issue any other way.
– MD Naseem Ashraf
Mar 9 at 2:20
I have to show the data into the listview or recycler view and a graph which represent the salary of people i can do these things once i get the data into arraylist
– Neelay Srivastava
Mar 9 at 2:24
|
show 4 more comments
That looks a lot like a .csv file. CSV files were the old format of Comma Separated Values, built from Tabular data.
Each row is one object and each column is its attribute/field. You can read about CSV files here.
Approach 1
Filter out using string manipulation the extra symbols of slashes and quotes. Delimit at the square braces (more info here) and then reading each delimited comma separated value text by any CSV reading library. Here's a tutorial using Apache Commons CSV library to read CSV files in Java.
Approach 2
Instead of using any library, if your response set is small and you don't need as much parsing optimization, write your object class's constructor to take in each row, filter out the useless symbols (using string manipulation) and initialize your object's fields.
All steps involved:
- Clean response and remove unnecessary symbols using string manipulation.
- Build a POJO class to keep one row of the dataset. Have its constructor to take in the first row of your dataset to initialize its attributes.
- Build a list format or ArrayList format of your previous class with additional methods to sort, search or call by indices as required.
- Build a constructor for this list object class to read in your cleaned string response and iterate over it to build Employee objects and adding them to your list.
That looks a lot like a .csv file. CSV files were the old format of Comma Separated Values, built from Tabular data.
Each row is one object and each column is its attribute/field. You can read about CSV files here.
Approach 1
Filter out using string manipulation the extra symbols of slashes and quotes. Delimit at the square braces (more info here) and then reading each delimited comma separated value text by any CSV reading library. Here's a tutorial using Apache Commons CSV library to read CSV files in Java.
Approach 2
Instead of using any library, if your response set is small and you don't need as much parsing optimization, write your object class's constructor to take in each row, filter out the useless symbols (using string manipulation) and initialize your object's fields.
All steps involved:
- Clean response and remove unnecessary symbols using string manipulation.
- Build a POJO class to keep one row of the dataset. Have its constructor to take in the first row of your dataset to initialize its attributes.
- Build a list format or ArrayList format of your previous class with additional methods to sort, search or call by indices as required.
- Build a constructor for this list object class to read in your cleaned string response and iterate over it to build Employee objects and adding them to your list.
edited Mar 9 at 3:42
answered Mar 9 at 1:45
MD Naseem AshrafMD Naseem Ashraf
6901617
6901617
Sir i started with the csv files but the data is quite large through csv its is not possible as i can do it by other way but i will end up with just string with all the value I am asking here when i have gone through all the possible way like json array to string and many more way
– Neelay Srivastava
Mar 9 at 1:51
If your dataset is too large, are you sure you need to read all that data? A large data set is rarely used with an Android app, as device memory is very limited. What are you using the data for? If you're using it to just display it, then you might want to look into pagination: blog.iamsuleiman.com/…
– MD Naseem Ashraf
Mar 9 at 2:08
even if i try by the csv method i will end up having other symbols and the following output will not be saved in the array list
– Neelay Srivastava
Mar 9 at 2:17
That seems more like an issue with your regex filtering. Unless you clean your response, it cannot be read correctly by your methods or even parsing libraries. What is your use case with the dataset, if you can tell, we can see if we solve the issue any other way.
– MD Naseem Ashraf
Mar 9 at 2:20
I have to show the data into the listview or recycler view and a graph which represent the salary of people i can do these things once i get the data into arraylist
– Neelay Srivastava
Mar 9 at 2:24
|
show 4 more comments
Sir i started with the csv files but the data is quite large through csv its is not possible as i can do it by other way but i will end up with just string with all the value I am asking here when i have gone through all the possible way like json array to string and many more way
– Neelay Srivastava
Mar 9 at 1:51
If your dataset is too large, are you sure you need to read all that data? A large data set is rarely used with an Android app, as device memory is very limited. What are you using the data for? If you're using it to just display it, then you might want to look into pagination: blog.iamsuleiman.com/…
– MD Naseem Ashraf
Mar 9 at 2:08
even if i try by the csv method i will end up having other symbols and the following output will not be saved in the array list
– Neelay Srivastava
Mar 9 at 2:17
That seems more like an issue with your regex filtering. Unless you clean your response, it cannot be read correctly by your methods or even parsing libraries. What is your use case with the dataset, if you can tell, we can see if we solve the issue any other way.
– MD Naseem Ashraf
Mar 9 at 2:20
I have to show the data into the listview or recycler view and a graph which represent the salary of people i can do these things once i get the data into arraylist
– Neelay Srivastava
Mar 9 at 2:24
Sir i started with the csv files but the data is quite large through csv its is not possible as i can do it by other way but i will end up with just string with all the value I am asking here when i have gone through all the possible way like json array to string and many more way
– Neelay Srivastava
Mar 9 at 1:51
Sir i started with the csv files but the data is quite large through csv its is not possible as i can do it by other way but i will end up with just string with all the value I am asking here when i have gone through all the possible way like json array to string and many more way
– Neelay Srivastava
Mar 9 at 1:51
If your dataset is too large, are you sure you need to read all that data? A large data set is rarely used with an Android app, as device memory is very limited. What are you using the data for? If you're using it to just display it, then you might want to look into pagination: blog.iamsuleiman.com/…
– MD Naseem Ashraf
Mar 9 at 2:08
If your dataset is too large, are you sure you need to read all that data? A large data set is rarely used with an Android app, as device memory is very limited. What are you using the data for? If you're using it to just display it, then you might want to look into pagination: blog.iamsuleiman.com/…
– MD Naseem Ashraf
Mar 9 at 2:08
even if i try by the csv method i will end up having other symbols and the following output will not be saved in the array list
– Neelay Srivastava
Mar 9 at 2:17
even if i try by the csv method i will end up having other symbols and the following output will not be saved in the array list
– Neelay Srivastava
Mar 9 at 2:17
That seems more like an issue with your regex filtering. Unless you clean your response, it cannot be read correctly by your methods or even parsing libraries. What is your use case with the dataset, if you can tell, we can see if we solve the issue any other way.
– MD Naseem Ashraf
Mar 9 at 2:20
That seems more like an issue with your regex filtering. Unless you clean your response, it cannot be read correctly by your methods or even parsing libraries. What is your use case with the dataset, if you can tell, we can see if we solve the issue any other way.
– MD Naseem Ashraf
Mar 9 at 2:20
I have to show the data into the listview or recycler view and a graph which represent the salary of people i can do these things once i get the data into arraylist
– Neelay Srivastava
Mar 9 at 2:24
I have to show the data into the listview or recycler view and a graph which represent the salary of people i can do these things once i get the data into arraylist
– Neelay Srivastava
Mar 9 at 2:24
|
show 4 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55072534%2fhow-to-add-the-data-from-an-api-without-pojo%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown