Trying to get data from web-service in java

Luffy
[
    {
        "title": "ginger",
        "id": "38",
        "product_id": "17",
        "product_logo": "imagePath/Desert_0.jpg?itok=Uvm6nxpY",
        "product_logo_1": "imagePath/Desert_0.jpg?itok=6YHK_afq",
        "price": "$12.00"
    }
]

I'm working on a swing application in Java in which I need to fetch data from web-service

I'm following this example to get data from web service and it store web service data in String.

But I want to convert this string to json and follow some example one of them is this and this

so I just want to know what I'm doing wrong here, or this is the right way to use this, because I don't know how to use web services in Java...

Zoro

You need to create its object first and then you need to use this

JSONObject jsnobject = new JSONObject(String);

JSONArray jsonArray = jsnobject.getJSONArray("locations");
for (int i = 0; i < jsonArray.length(); i++) {
    JSONObject explrObject = jsonArray.getJSONObject(i);
}

and make sure you import this one in your code org.json.JSONObject

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

java Restful web service get the data from textbox in POST action

From Dev

How to get data from web service in android?

From Dev

how to get data from web service in mule

From Dev

How to get data from OMDb API web service

From Dev

unable to get data from http.post on php web service

From Dev

How to get some data from a restful web service, and save it to the database?

From Dev

Unable to get huge data response from the web-service android?

From Dev

how to get data from web service using xml

From Dev

get the data from web service response in retrofit android

From Dev

Get data from remote sql server in a .NET web service

From Dev

Can't get data from my generated web service

From Dev

data parameter is nil when i trying to fetch the data from web service using json

From Dev

Trying to implement a simple JSON web service in Java

From Dev

How I get the answer from a Web Service with Java in Netbeans?

From Dev

Java , how can i get JSON from restful(?) web service

From Dev

Error when trying to get Purchases from Android Publisher Service in a .Net Web API

From Dev

Error when trying to get Purchases from Android Publisher Service in a .Net Web API

From Dev

Trying Back ground Service is Fetching Data From Sqlite Database Send to Web, Same Time Listview Showing Data From Sqlite Database Not Working

From Dev

Trying to figure out a $watch on data from a service

From Dev

Get data to template from Service

From Dev

How to get data from html to java in web application?

From Dev

Call ASMX web service with parameter and get value from that web service?

From Dev

How to get web service data with javascript?

From Dev

get icloud web service endpoints to fetch data

From Dev

Php web service to get data in json format

From Dev

Trying to Store Image from web-service in Postgresql Database

From Dev

Issue to get data from web api service using proxy in extjs store

From Dev

Should I pass database user and password in parameters to call a web service to get data from database

From Dev

Issue to get data from web api service using proxy in extjs store

Related Related

  1. 1

    java Restful web service get the data from textbox in POST action

  2. 2

    How to get data from web service in android?

  3. 3

    how to get data from web service in mule

  4. 4

    How to get data from OMDb API web service

  5. 5

    unable to get data from http.post on php web service

  6. 6

    How to get some data from a restful web service, and save it to the database?

  7. 7

    Unable to get huge data response from the web-service android?

  8. 8

    how to get data from web service using xml

  9. 9

    get the data from web service response in retrofit android

  10. 10

    Get data from remote sql server in a .NET web service

  11. 11

    Can't get data from my generated web service

  12. 12

    data parameter is nil when i trying to fetch the data from web service using json

  13. 13

    Trying to implement a simple JSON web service in Java

  14. 14

    How I get the answer from a Web Service with Java in Netbeans?

  15. 15

    Java , how can i get JSON from restful(?) web service

  16. 16

    Error when trying to get Purchases from Android Publisher Service in a .Net Web API

  17. 17

    Error when trying to get Purchases from Android Publisher Service in a .Net Web API

  18. 18

    Trying Back ground Service is Fetching Data From Sqlite Database Send to Web, Same Time Listview Showing Data From Sqlite Database Not Working

  19. 19

    Trying to figure out a $watch on data from a service

  20. 20

    Get data to template from Service

  21. 21

    How to get data from html to java in web application?

  22. 22

    Call ASMX web service with parameter and get value from that web service?

  23. 23

    How to get web service data with javascript?

  24. 24

    get icloud web service endpoints to fetch data

  25. 25

    Php web service to get data in json format

  26. 26

    Trying to Store Image from web-service in Postgresql Database

  27. 27

    Issue to get data from web api service using proxy in extjs store

  28. 28

    Should I pass database user and password in parameters to call a web service to get data from database

  29. 29

    Issue to get data from web api service using proxy in extjs store

HotTag

Archive