How would I save JSON outputed by an URL to a file?

e.g from the Twitter search API (this http://search.twitter.com/search.json?q=hi)

Language isn't important.

Thanks!

edit // How would I then append further updates to EOF?

edit 2// Great answers guys really, but I accepted the one I thought was the most elegant. Thanks! :)

link|improve this question

76% accept rate
feedback

7 Answers

up vote 4 down vote accepted

This is easy in any language, but the mechanism varies. With wget and a shell:

wget 'http://search.twitter.com/search.json?q=hi' -O hi.json

To append:

wget 'http://search.twitter.com/search.json?q=hi' -O - >> hi.json

With Python:

urllib.urlretrieve('http://search.twitter.com/search.json?q=hi', 'hi.json')

To append:

hi_web = urllib2.urlopen('http://search.twitter.com/search.json?q=hi');
with open('hi.json', 'ab') as hi_file:
  hi_file.write(hi_web.read())
link|improve this answer
How would I then append further updates to EOF? – Skizit Jun 14 '10 at 21:10
feedback

Here's the (verbose ;) ) Java variant:

InputStream input = null;
OutputStream output = null;
try {
    input = new URL("http://search.twitter.com/search.json?q=hi").openStream();
    output = new FileOutputStream("/output.json");
    byte[] buffer = new byte[1024];
    for (int length = 0; (length = input.read(buffer)) > 0;) {
        output.write(buffer, 0, length);
    }
    // Here you could append further stuff to `output` if necessary.
} finally {
    if (output != null) try { output.close(); } catch (IOException logOrIgnore) {}
    if (input != null) try { input.close(); } catch (IOException logOrIgnore) {}
}

See also:

link|improve this answer
How would I then append further updates to EOF? – Skizit Jun 14 '10 at 21:11
See the comment in the code example. – BalusC Jun 14 '10 at 21:11
feedback

In shell:

wget -O output.json 'http://search.twitter.com/search.json?q=hi'
link|improve this answer
How would I then append further updates to EOF? – Skizit Jun 14 '10 at 21:09
Just output to stdout (-) and use the append redirection operator (>>). – Ignacio Vazquez-Abrams Jun 14 '10 at 21:15
1  
wget <URL> >> output.json – Ether Jun 14 '10 at 21:16
feedback

In PHP:

$outfile= 'result.json';
$url='http://search.twitter.com/search.json?q=hi';
$json = file_get_contents($url);
if($json) { 
    if(file_put_contents($outfile, $json, FILE_APPEND)) {
      echo "Saved JSON fetched from “{$url}” as “{$outfile}”.";
    }
    else {
      echo "Unable to save JSON to “{$outfile}”.";
    }
}
else {
   echo "Unable to fetch JSON from “{$url}”.";
}
link|improve this answer
feedback

You can use CURL

curl -d "q=hi" http://search.twitter.com -o file1.txt
link|improve this answer
feedback

You can use Jackson:

 ObjectMapper mapper = new ObjectMapper(); 
 Map<String,Object> map = mapper.readValue(url, Map.class);
 mapper.writeValue(new File("myfile.json"), map);
link|improve this answer
feedback

Here is another way of doing this with PHP and fOpen.

<?php
// Define your output file name and your search query
$output = 'result.txt';
$search = 'great';

write_twitter_to_file($output, $search);

/*
 * Writes Json responses from twitter API to a file output.
 * 
 * @param $output: The name of the file that contains the output 
 * @param $search: The search term query to use in the Twitter API
*/

function write_twitter_to_file($output, $search) {
    $search = urlencode($search);
    $url = 'http://search.twitter.com/search.json?q=' . $search;
    $handle = fopen($url, "r");

    if ($handle) {
        while (($buffer = fgets($handle, 4096)) !== false) {
            file_put_contents($output, $buffer, FILE_APPEND);
            echo "Output has been saved to file<br/>";
        }

        if (!feof($handle)) {
            echo "Error: unexpected fgets() fail\n";
        }

        fclose($handle);
    }

}
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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