I'm having some issues with Coldfusion and JSON. My users have filenames and other key words with characters like 'ç' in them which is causing me a pain when I have to pass them back via JSON.

When I use the magic JSON command on my variable /Edited the code section to provide a better example/

<cfcontent type="application/json"> 
<cfset variables.stGalleryItem = StructNew() />
<cfset variables.stGalleryItem["imagePath"] = siteRoot & '/images/350460/hellç.txt' />
<cfset variables.stGalleryItem["title"] = 'çççç'  />
<cfset variables.stGalleryItem["author"] = 'HI' />
<cfset variables.stGalleryItem["text"] = 'aa' />
<cfset ArrayAppend(variables.arrGallery,variables.stGalleryItem) />

<cfoutput>
    #Trim(SerializeJSON(variables.arrGallery))#
</cfoutput>

The character that gets spit out is �, which does no one any good.

Is there anything I can do to preserve my users 'ç'?

Cheers

link|improve this question

can you provide a more complete example? When I do variables.arrGallery = "ç" I am not able to reproduce the problem. – orangepips Jun 3 '11 at 14:52
Added the code I am using. – Jarede Jun 3 '11 at 15:11
is there another page that's calling this via an AJAX request? – orangepips Jun 3 '11 at 15:22
feedback

2 Answers

up vote 5 down vote accepted

You need to specify the Character Set in your CFCONTENT tag. I tried this code in Google Chrome without charset and it returned the text correctly. However, FireFox 3.6 returned the incorrect characters you listed.

This correctly returns the UTF-8 characters in Chrome, FireFox and MSIE:

<cfcontent type="application/json; charset=utf-8">
link|improve this answer
feedback

Do the conversion yourself : http://tojson.riaforge.org/ (native) or http://json-lib.sourceforge.net/ (via a Java library)

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.