Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

hi there is a url thats on calling provide a json object how to call it using java code.

url = new URL("my URl");
urlInputStream = url.openConnection().getInputStream();

and i will parse it but just tell me how to convert this response into string form.

share|improve this question
Welcome to stack overflow! please remember to properly format your code when posting questions. – citizen conn Jun 28 '11 at 19:15

6 Answers

up vote -2 down vote accepted
import org.json.JSONObject;
JSONObject json = new JSONObject(urlInputStream.toString());
share|improve this answer
1  
Since JSONObject isn't part of the standard library, you should really specify which one you're using. – Dunes Jun 28 '11 at 19:25
1  
org.json package has always been available to me in Android sdk – citizen conn Jun 28 '11 at 19:28
1  
@Selvin yes in fact, it returns the string of the server response. – citizen conn Oct 10 '12 at 21:10
3  
I tried in.toString() but it returns: getClass().getName() + '@' + Integer.toHexString(hashCode()) .. See my answer below – Martin Christmann Nov 7 '12 at 10:26
2  
I agree with Martin, the stream needs to be read in. Sorry but this answer is just plain wrong. – mparaz Mar 28 at 9:49
show 6 more comments

I would suggest you have to use a Reader to convert your InputStream in.

    BufferedReader streamReader = new BufferedReader(new InputStreamReader(in, "UTF-8")); 
    StringBuilder responseStrBuilder = new StringBuilder();

    String inputStr;
    while ((inputStr = streamReader.readLine()) != null)
        responseStrBuilder.append(inputStr);
    new JSONObject(responseStrBuilder.toString());

I tried in.toString() but it returns:

getClass().getName() + '@' + Integer.toHexString(hashCode())

(like documentation says it derives to toString from Object)

share|improve this answer

use jackson to convert json input stream to the map or object http://jackson.codehaus.org/

there are also some other usefull libraries for json, you can google: json java

share|improve this answer

Use a library.

  • GSON
  • Jackson
  • or one of many other JSON libraries that are out there.
share|improve this answer

For those that pointed out the fact that you can't use the toString method of InputStream like this see http://stackoverflow.com/a/5445161/1304830 :

My correct answer would be then :

import org.json.JSONObject;

public static String convertStreamToString(java.io.InputStream is) {
    java.util.Scanner s = new java.util.Scanner(is).useDelimiter("\\A");
    return s.hasNext() ? s.next() : "";
}

...

JSONObject json = new JSONObject(convertStreamToString(url.openStream());
share|improve this answer
{
    InputStream is = HTTPClient.get(url);
    InputStreamReader reader = new InputStreamReader(is);
    JSONTokener tokenizer = new JSONTokener(reader);
    JSONObject jsonObject = new JSONObject(tokenizer);
}
share|improve this answer
2  
Doesn't JSONTokener require a JSON string, not an InputStreamReader? – VMcPherron Aug 7 '12 at 20:57
4  
link Indicates that for Android, JSONTokener only takes a String. – VMcPherron Aug 7 '12 at 21:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.