seratch's weblog in Japanese

About Scala, Java and Ruby programming in Japaense. If you need English information, go to http://blog.seratch.net/

JSON をオフラインで手軽に prettify する方法

irb を起動して以下のようにするのが楽かな?

require 'open-uri'
require 'json'
content = open("http://example.com").read
puts JSON.pretty_generate(JSON.parse(content))

追記:

言葉足らずでしたが、これはオフラインで整形したいというニーズがあってのことでした。@yusuke に教えていただきましたが、こんなのもあるみたい。クライアントサイドだけで動くとのこと。

http://archive.dojotoolkit.org/nightly/dojotoolkit/dojox/gfx/demos/beautify.html