How to parse null name json array(only strings)












0















I tried to parse this JSON address but failed. The code I tried is failing, no data is reflected. Can you help me?



My Code;



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(null);
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject hit = jsonArray.getJSONObject(i);
String imageref = hit.getString(null);

mExampleList.add(new ExampleItemRef(imageref));
}


This JSON;






[
"https://www.asdasd.com/images/r/a.png",
"https://www.asdasd.com/images/r/b.png",
"https://www.asdasd.com/images/r/c.png",
"https://www.asdasd.com/images/r/d.png",
"https://www.asdasd.com/images/r/e.png"
]












share|improve this question

























  • From the code you provided, it looks like you're iterating through a new JSON array that you created (new JSONArray() creates an empty JSON array object), which means it will contain no elements. You should be obtaining the array containing the strings. Without knowing the source of your JSON (e.g. service response, programmatically created object, JSON string?), it is hard to provide a complete answer. If the source is simply a JSON string, you can check out this answer: stackoverflow.com/questions/18977144/…

    – Vinnie
    Nov 18 '18 at 3:08













  • empty json do not return my code as follows: JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:41











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45
















0















I tried to parse this JSON address but failed. The code I tried is failing, no data is reflected. Can you help me?



My Code;



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(null);
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject hit = jsonArray.getJSONObject(i);
String imageref = hit.getString(null);

mExampleList.add(new ExampleItemRef(imageref));
}


This JSON;






[
"https://www.asdasd.com/images/r/a.png",
"https://www.asdasd.com/images/r/b.png",
"https://www.asdasd.com/images/r/c.png",
"https://www.asdasd.com/images/r/d.png",
"https://www.asdasd.com/images/r/e.png"
]












share|improve this question

























  • From the code you provided, it looks like you're iterating through a new JSON array that you created (new JSONArray() creates an empty JSON array object), which means it will contain no elements. You should be obtaining the array containing the strings. Without knowing the source of your JSON (e.g. service response, programmatically created object, JSON string?), it is hard to provide a complete answer. If the source is simply a JSON string, you can check out this answer: stackoverflow.com/questions/18977144/…

    – Vinnie
    Nov 18 '18 at 3:08













  • empty json do not return my code as follows: JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:41











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45














0












0








0


2






I tried to parse this JSON address but failed. The code I tried is failing, no data is reflected. Can you help me?



My Code;



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(null);
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject hit = jsonArray.getJSONObject(i);
String imageref = hit.getString(null);

mExampleList.add(new ExampleItemRef(imageref));
}


This JSON;






[
"https://www.asdasd.com/images/r/a.png",
"https://www.asdasd.com/images/r/b.png",
"https://www.asdasd.com/images/r/c.png",
"https://www.asdasd.com/images/r/d.png",
"https://www.asdasd.com/images/r/e.png"
]












share|improve this question
















I tried to parse this JSON address but failed. The code I tried is failing, no data is reflected. Can you help me?



My Code;



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(null);
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject hit = jsonArray.getJSONObject(i);
String imageref = hit.getString(null);

mExampleList.add(new ExampleItemRef(imageref));
}


This JSON;






[
"https://www.asdasd.com/images/r/a.png",
"https://www.asdasd.com/images/r/b.png",
"https://www.asdasd.com/images/r/c.png",
"https://www.asdasd.com/images/r/d.png",
"https://www.asdasd.com/images/r/e.png"
]








[
"https://www.asdasd.com/images/r/a.png",
"https://www.asdasd.com/images/r/b.png",
"https://www.asdasd.com/images/r/c.png",
"https://www.asdasd.com/images/r/d.png",
"https://www.asdasd.com/images/r/e.png"
]





[
"https://www.asdasd.com/images/r/a.png",
"https://www.asdasd.com/images/r/b.png",
"https://www.asdasd.com/images/r/c.png",
"https://www.asdasd.com/images/r/d.png",
"https://www.asdasd.com/images/r/e.png"
]






android arrays json parsing






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 18 '18 at 3:45







user10669131

















asked Nov 18 '18 at 2:51









user10669131user10669131

11




11













  • From the code you provided, it looks like you're iterating through a new JSON array that you created (new JSONArray() creates an empty JSON array object), which means it will contain no elements. You should be obtaining the array containing the strings. Without knowing the source of your JSON (e.g. service response, programmatically created object, JSON string?), it is hard to provide a complete answer. If the source is simply a JSON string, you can check out this answer: stackoverflow.com/questions/18977144/…

    – Vinnie
    Nov 18 '18 at 3:08













  • empty json do not return my code as follows: JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:41











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45



















  • From the code you provided, it looks like you're iterating through a new JSON array that you created (new JSONArray() creates an empty JSON array object), which means it will contain no elements. You should be obtaining the array containing the strings. Without knowing the source of your JSON (e.g. service response, programmatically created object, JSON string?), it is hard to provide a complete answer. If the source is simply a JSON string, you can check out this answer: stackoverflow.com/questions/18977144/…

    – Vinnie
    Nov 18 '18 at 3:08













  • empty json do not return my code as follows: JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:41











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45

















From the code you provided, it looks like you're iterating through a new JSON array that you created (new JSONArray() creates an empty JSON array object), which means it will contain no elements. You should be obtaining the array containing the strings. Without knowing the source of your JSON (e.g. service response, programmatically created object, JSON string?), it is hard to provide a complete answer. If the source is simply a JSON string, you can check out this answer: stackoverflow.com/questions/18977144/…

– Vinnie
Nov 18 '18 at 3:08







From the code you provided, it looks like you're iterating through a new JSON array that you created (new JSONArray() creates an empty JSON array object), which means it will contain no elements. You should be obtaining the array containing the strings. Without knowing the source of your JSON (e.g. service response, programmatically created object, JSON string?), it is hard to provide a complete answer. If the source is simply a JSON string, you can check out this answer: stackoverflow.com/questions/18977144/…

– Vinnie
Nov 18 '18 at 3:08















empty json do not return my code as follows: JSONArray jsonArray = response.getJSONArray(null);

– user10669131
Nov 18 '18 at 3:41





empty json do not return my code as follows: JSONArray jsonArray = response.getJSONArray(null);

– user10669131
Nov 18 '18 at 3:41













I edited the message, can you see?

– user10669131
Nov 18 '18 at 3:45





I edited the message, can you see?

– user10669131
Nov 18 '18 at 3:45












2 Answers
2






active

oldest

votes


















0














Just remove all unnecessary part from your code and change it like below. You need to put your json string when creating array



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(jsonString);
for (int i = 0; i < jsonArray.length(); i++) {
mExampleList.add(new ExampleItemRef(jsonArray.getString(i)));
}
}





share|improve this answer


























  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45













  • I updated answer @user10669131 just try

    – Lucefer
    Nov 18 '18 at 3:53











  • "jsonString" will be ur JSON Array without keys. Try it as empty string ""

    – Lucefer
    Nov 18 '18 at 4:02













  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:32



















0














You could do like this:



ArrayList < ExampleItemRef > mExampleList = new ArrayList <ExampleItemRef > ();
String jsonStr =
"[ "https://www.asdasd.com/images/r/a.png", "https://www.asdasd.com/images/r/b.png", "https://www.asdasd.com/images/r/c.png", "https://www.asdasd.com/images/r/d.png", "https://www.asdasd.com/images/r/e.png" ]";

try {
JSONArray jsonArray = new JSONArray(jsonStr);
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}
} catch (JSONException e) {
e.printStackTrace();
}


codes are self explanatory, so no comments,hope helpful



Edited: try this:



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = new JSONArray(response.toString());
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}





share|improve this answer


























  • hey, thenks but my json not string. in this way; final String url = "JSON WEBSITE"; JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { try { JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:42











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45











  • @user10669131 see my edited

    – navylover
    Nov 18 '18 at 4:23











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53357468%2fhow-to-parse-null-name-json-arrayonly-strings%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









0














Just remove all unnecessary part from your code and change it like below. You need to put your json string when creating array



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(jsonString);
for (int i = 0; i < jsonArray.length(); i++) {
mExampleList.add(new ExampleItemRef(jsonArray.getString(i)));
}
}





share|improve this answer


























  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45













  • I updated answer @user10669131 just try

    – Lucefer
    Nov 18 '18 at 3:53











  • "jsonString" will be ur JSON Array without keys. Try it as empty string ""

    – Lucefer
    Nov 18 '18 at 4:02













  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:32
















0














Just remove all unnecessary part from your code and change it like below. You need to put your json string when creating array



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(jsonString);
for (int i = 0; i < jsonArray.length(); i++) {
mExampleList.add(new ExampleItemRef(jsonArray.getString(i)));
}
}





share|improve this answer


























  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45













  • I updated answer @user10669131 just try

    – Lucefer
    Nov 18 '18 at 3:53











  • "jsonString" will be ur JSON Array without keys. Try it as empty string ""

    – Lucefer
    Nov 18 '18 at 4:02













  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:32














0












0








0







Just remove all unnecessary part from your code and change it like below. You need to put your json string when creating array



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(jsonString);
for (int i = 0; i < jsonArray.length(); i++) {
mExampleList.add(new ExampleItemRef(jsonArray.getString(i)));
}
}





share|improve this answer















Just remove all unnecessary part from your code and change it like below. You need to put your json string when creating array



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = response.getJSONArray(jsonString);
for (int i = 0; i < jsonArray.length(); i++) {
mExampleList.add(new ExampleItemRef(jsonArray.getString(i)));
}
}






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 18 '18 at 4:00

























answered Nov 18 '18 at 3:04









LuceferLucefer

1,1211511




1,1211511













  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45













  • I updated answer @user10669131 just try

    – Lucefer
    Nov 18 '18 at 3:53











  • "jsonString" will be ur JSON Array without keys. Try it as empty string ""

    – Lucefer
    Nov 18 '18 at 4:02













  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:32



















  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45













  • I updated answer @user10669131 just try

    – Lucefer
    Nov 18 '18 at 3:53











  • "jsonString" will be ur JSON Array without keys. Try it as empty string ""

    – Lucefer
    Nov 18 '18 at 4:02













  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:32

















I edited the message, can you see?

– user10669131
Nov 18 '18 at 3:45







I edited the message, can you see?

– user10669131
Nov 18 '18 at 3:45















I updated answer @user10669131 just try

– Lucefer
Nov 18 '18 at 3:53





I updated answer @user10669131 just try

– Lucefer
Nov 18 '18 at 3:53













"jsonString" will be ur JSON Array without keys. Try it as empty string ""

– Lucefer
Nov 18 '18 at 4:02







"jsonString" will be ur JSON Array without keys. Try it as empty string ""

– Lucefer
Nov 18 '18 at 4:02















Unfortunately, it didn't work

– user10669131
Nov 18 '18 at 13:31





Unfortunately, it didn't work

– user10669131
Nov 18 '18 at 13:31













Unfortunately, it didn't work

– user10669131
Nov 18 '18 at 13:32





Unfortunately, it didn't work

– user10669131
Nov 18 '18 at 13:32













0














You could do like this:



ArrayList < ExampleItemRef > mExampleList = new ArrayList <ExampleItemRef > ();
String jsonStr =
"[ "https://www.asdasd.com/images/r/a.png", "https://www.asdasd.com/images/r/b.png", "https://www.asdasd.com/images/r/c.png", "https://www.asdasd.com/images/r/d.png", "https://www.asdasd.com/images/r/e.png" ]";

try {
JSONArray jsonArray = new JSONArray(jsonStr);
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}
} catch (JSONException e) {
e.printStackTrace();
}


codes are self explanatory, so no comments,hope helpful



Edited: try this:



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = new JSONArray(response.toString());
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}





share|improve this answer


























  • hey, thenks but my json not string. in this way; final String url = "JSON WEBSITE"; JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { try { JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:42











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45











  • @user10669131 see my edited

    – navylover
    Nov 18 '18 at 4:23











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31
















0














You could do like this:



ArrayList < ExampleItemRef > mExampleList = new ArrayList <ExampleItemRef > ();
String jsonStr =
"[ "https://www.asdasd.com/images/r/a.png", "https://www.asdasd.com/images/r/b.png", "https://www.asdasd.com/images/r/c.png", "https://www.asdasd.com/images/r/d.png", "https://www.asdasd.com/images/r/e.png" ]";

try {
JSONArray jsonArray = new JSONArray(jsonStr);
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}
} catch (JSONException e) {
e.printStackTrace();
}


codes are self explanatory, so no comments,hope helpful



Edited: try this:



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = new JSONArray(response.toString());
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}





share|improve this answer


























  • hey, thenks but my json not string. in this way; final String url = "JSON WEBSITE"; JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { try { JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:42











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45











  • @user10669131 see my edited

    – navylover
    Nov 18 '18 at 4:23











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31














0












0








0







You could do like this:



ArrayList < ExampleItemRef > mExampleList = new ArrayList <ExampleItemRef > ();
String jsonStr =
"[ "https://www.asdasd.com/images/r/a.png", "https://www.asdasd.com/images/r/b.png", "https://www.asdasd.com/images/r/c.png", "https://www.asdasd.com/images/r/d.png", "https://www.asdasd.com/images/r/e.png" ]";

try {
JSONArray jsonArray = new JSONArray(jsonStr);
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}
} catch (JSONException e) {
e.printStackTrace();
}


codes are self explanatory, so no comments,hope helpful



Edited: try this:



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = new JSONArray(response.toString());
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}





share|improve this answer















You could do like this:



ArrayList < ExampleItemRef > mExampleList = new ArrayList <ExampleItemRef > ();
String jsonStr =
"[ "https://www.asdasd.com/images/r/a.png", "https://www.asdasd.com/images/r/b.png", "https://www.asdasd.com/images/r/c.png", "https://www.asdasd.com/images/r/d.png", "https://www.asdasd.com/images/r/e.png" ]";

try {
JSONArray jsonArray = new JSONArray(jsonStr);
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}
} catch (JSONException e) {
e.printStackTrace();
}


codes are self explanatory, so no comments,hope helpful



Edited: try this:



private void parseJSON() {
final String url = "json website";
JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONArray jsonArray = new JSONArray(response.toString());
for (int i = 0; i < jsonArray.length(); i++) {
String imageref = jsonArray.getString(i);
mExampleList.add(new ExampleItemRef(imageref));
}






share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 18 '18 at 4:18

























answered Nov 18 '18 at 3:21









navylovernavylover

3,42021118




3,42021118













  • hey, thenks but my json not string. in this way; final String url = "JSON WEBSITE"; JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { try { JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:42











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45











  • @user10669131 see my edited

    – navylover
    Nov 18 '18 at 4:23











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31



















  • hey, thenks but my json not string. in this way; final String url = "JSON WEBSITE"; JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { try { JSONArray jsonArray = response.getJSONArray(null);

    – user10669131
    Nov 18 '18 at 3:42











  • I edited the message, can you see?

    – user10669131
    Nov 18 '18 at 3:45











  • @user10669131 see my edited

    – navylover
    Nov 18 '18 at 4:23











  • Unfortunately, it didn't work

    – user10669131
    Nov 18 '18 at 13:31

















hey, thenks but my json not string. in this way; final String url = "JSON WEBSITE"; JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { try { JSONArray jsonArray = response.getJSONArray(null);

– user10669131
Nov 18 '18 at 3:42





hey, thenks but my json not string. in this way; final String url = "JSON WEBSITE"; JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, url, null, new Response.Listener<JSONObject>() { @Override public void onResponse(JSONObject response) { try { JSONArray jsonArray = response.getJSONArray(null);

– user10669131
Nov 18 '18 at 3:42













I edited the message, can you see?

– user10669131
Nov 18 '18 at 3:45





I edited the message, can you see?

– user10669131
Nov 18 '18 at 3:45













@user10669131 see my edited

– navylover
Nov 18 '18 at 4:23





@user10669131 see my edited

– navylover
Nov 18 '18 at 4:23













Unfortunately, it didn't work

– user10669131
Nov 18 '18 at 13:31





Unfortunately, it didn't work

– user10669131
Nov 18 '18 at 13:31


















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53357468%2fhow-to-parse-null-name-json-arrayonly-strings%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

Guess what letter conforming each word

Port of Spain

Run scheduled task as local user group (not BUILTIN)