JSON Parser

R

Rama Singh

I am getting my data in JSON format, how can i validate or Parse JSON
data in rails.

Please help me,

Thanks & Regards,

Rama
 
M

Marcin Raczkowski

I am getting my data in JSON format, how can i validate or Parse JSON
data in rails.

Please help me,

Thanks & Regards,

Rama

RTFM?

but seriously - gogle for ruby JSON - first result gives you ruby JSON
library:

if you have data in JSON do @j = JSON.parse(json_data)
if you want to generate JSON from hash/array - json_data = JSON.unparse(@hash)
 
R

Rama Singh

Marcin said:
RTFM?

but seriously - gogle for ruby JSON - first result gives you ruby JSON
library:

if you have data in JSON do @j = JSON.parse(json_data)
if you want to generate JSON from hash/array - json_data =
JSON.unparse(@hash)

my code :
=================================
require 'D3I.rb'
require 'json'
status = 0
ic = nil
begin
ic = Ice::initialize(ARGV)
base = ic.stringToProxy("SessionFactory:tcp -p 10000")
twoway = D3View::ISessionFactoryPrx::checkedCast(base)
if not twoway
raise "Invalid proxy"
end

session = twoway.CreateSession()
olv = session.LoadObjects("APAL3DB", "AP3Customer")
olvID, iNumRecs = olv.AsJSON(0, 2)

#puts olvID
@j = JSON.parse(olvID)
puts @j
puts '------------------------------------------------------------'

#puts olv.GetID()
rescue Ice::Exception => ex
puts ex
end
exit
==================================
In the above code "olvID" variable get JSON data, i want to check iam
getting valid JSON or not, for that i used "@j = JSON.parse(olvID)", but
i get error :

c:/ruby/lib/ruby/site_ruby/1.8/json.rb:300:in `parse_object': expected
',' or '}' in object at '"Val
ue":"",}},"MetaC'! (JSON::parserError)
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:259:in `parse_value'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:296:in
`parse_object'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:259:in `parse_value'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:296:in
`parse_object'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:259:in `parse_value'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:296:in
`parse_object'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:259:in `parse_value'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:296:in
`parse_object'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:202:in `parse'
from c:/ruby/lib/ruby/site_ruby/1.8/json.rb:442:in `parse'
from client.rb:22
Don't know is it error in my JSON data, or in gems
 
F

Florian Frank

Rama said:
In the above code "olvID" variable get JSON data, i want to check iam
getting valid JSON or not, for that i used "@j = JSON.parse(olvID)", but
i get error :

c:/ruby/lib/ruby/site_ruby/1.8/json.rb:300:in `parse_object': expected
',' or '}' in object at '"Val
ue":"",}},"MetaC'! (JSON::parserError)
^
This isn't allowed in a valid JSON text.
 
R

Rama Singh

Florian said:
^
This isn't allowed in a valid JSON text.

I think this time you understood what actually i am looking for :

1. I get AsJSON data.
2. I want to parse JSON data in ruby.
 
J

James Edward Gray II

I think this time you understood what actually i am looking for :

1. I get AsJSON data.
2. I want to parse JSON data in ruby.

But as Florian said, you JSON data is not valid JSON. That's why the
Ruby parser won't parse it.

James Edward Gray II
 
R

Rama Singh

James said:
But as Florian said, you JSON data is not valid JSON. That's why the
Ruby parser won't parse it.

James Edward Gray II

Thanks Florian.
Thanks James, I found the error in JSON txt.

My last question is there any online website, where i can paste my JSON
data into textarea and i can check from there regarding JSON validation.

Thanks

Rama
 
R

Rama Singh

Chris said:
It's not a webiste, but you might want to look at this :
http://www.kuwata-lab.com/kwalify/

Chris

Chris :

Thanks for your TIP, i liked the link you send to me, but in kwalify, it
validates for YAML file, there it is mentioned that YAML and JSON are
some what similar, & moreover it validates from schema, in my
application i have not written any schema.

I just wanted to check my JSON data is valid or not, either from website
or from command prompt.

Regards,

Rama
 
P

Phrogz

I just wanted to check my JSON data is valid or not,
either from website or from command prompt.

If you want to know if it is valid, and you have access to a JS
interpreter (e.g. a web browser) then you could simply eval() it and
see if it compiles or not.
 
P

Phrogz

If you want to know if it is valid, and you have access to a JS
interpreter (e.g. a web browser) then you could simply eval() it and
see if it compiles or not.

For example, go to:
http://phrogz.net/tmp/simplejs.html

and paste your JSON 'code' in, and then hit tab or otherwise defocus
the top pane. If you see valid data in the bottom, the input was
valid. If not, well, it's not a valid JS object.
 
M

Marcin Raczkowski

Thanks Florian.
Thanks James, I found the error in JSON txt.

My last question is there any online website, where i can paste my JSON
data into textarea and i can check from there regarding JSON validation.

Thanks

Rama

~ irb
require 'json'

begin
@l = File.open($*[0], "r") { |f| f.readlines }
rescue Exception
puts "could not open file"
end

begin
JSON.unparse(@l)
puts "it's valid JSON"
rescue Exception
puts "it's not valid JSON"
end
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,045
Latest member
DRCM

Latest Threads

Top