[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

ruby json library trouble

Lyes Amazouz

1/14/2009 11:49:00 PM

[Note: parts of this message were removed to make it a legal post.]

Hi everybody

I'm trying to export some data in the Json format using the json_pure
library

I've well prepared my structure in my program and I used the generate method
to get the Jon output. But, during the generation, an error occurs saying
that it met a character that is not utf-8 encoded.?

Do this mean that I'm obliged to give UTF-8 encoded strings in my objects to
get my json output, and if it is the case, do you now good ruby utf-8
encoding library to advise it to me?

Thank you!
--
===========
| Lyes Amazouz
| USTHB, Algiers
===========

6 Answers

Izidor Jerebic

1/16/2009 8:51:00 AM

0


I did not check, but probably you need to use utf8 strings, at least
for ruby 1.8

For encoding into utf8, you need to know what is your string's current
encoding, and then change the string into utf8 encoding. You can use
iconv() (google ruby iconv) for that change.

izidor

On 15.1.2009, at 0:48, Lyes Amazouz wrote:

> Hi everybody
>
> I'm trying to export some data in the Json format using the json_pure
> library
>
> I've well prepared my structure in my program and I used the
> generate method
> to get the Jon output. But, during the generation, an error occurs
> saying
> that it met a character that is not utf-8 encoded.?
>
> Do this mean that I'm obliged to give UTF-8 encoded strings in my
> objects to
> get my json output, and if it is the case, do you now good ruby utf-8
> encoding library to advise it to me?
>
> Thank you!
> --
> ===========
> | Lyes Amazouz
> | USTHB, Algiers
> ===========


Brian Candler

1/16/2009 11:03:00 AM

0

Amazouz Loui wrote:
> I've well prepared my structure in my program and I used the generate
> method
> to get the Jon output. But, during the generation, an error occurs
> saying
> that it met a character that is not utf-8 encoded.?

Json *only* supports Unicode text. See http://www.un...

If you want to send arbitrary binary data, you need to encode it first
into a textual form, e.g. using base64 encoding.

If you want to sent 8-bit text which is not UTF-8, then you can
transcode it to UTF-8 (probably the "right thing" in this context), or
base64 encode it.
--
Posted via http://www.ruby-....

Brian Candler

1/16/2009 11:04:00 AM

0

Sorry I meant http://www... - must engage brain sooner!
--
Posted via http://www.ruby-....

Lyes Amazouz

1/18/2009 7:03:00 AM

0

[Note: parts of this message were removed to make it a legal post.]

OK, thank you Brian and Izidor,

I will see in that way. But I want to know something more, what is exactly
the role of the KCode Variable?

Than kyou!



--
===========
| Lyes Amazouz
| USTHB, Algiers
===========

James Gray

1/18/2009 4:39:00 PM

0

On Jan 18, 2009, at 1:03 AM, Lyes Amazouz wrote:

> I will see in that way. But I want to know something more, what is
> exactly the role of the KCode Variable?

I answer that specific question in this blog post:

http://blog.grayproductions.net/articles/the_kcode_variable_and_jco...

If you want more general character encoding information, you may wish
to start reading from the beginning of that series:

http://blog.grayproductions.net/articles/understa...

Hope that helps.

James Edward Gray II


Lyes Amazouz

1/20/2009 8:08:00 AM

0

[Note: parts of this message were removed to make it a legal post.]

Hello James!

Thank you for the quick answer, I will see whate you gave me


>
> http://blog.grayproductions.net/articles/the_kcode_variable_and_jco...
>
> If you want more general character encoding information, you may wish to
> start reading from the beginning of that series:
>
> http://blog.grayproductions.net/articles/understa...
>
> Hope that helps.
>
> James Edward Gray II
>
>
> Cheers!


--
===========
| Lyes Amazouz
| USTHB, Algiers
===========