如何处理json字符串中的特殊字符

时间:2013-10-20 06:27:11

标签: android json character-encoding

我有一个应用程序,我将用户输入的文本存储到json字符串中。然后我将该json字符串存储到一个文件中。然后通过读取文件显示它,从中提取json字符串,最后将字符串显示为textview。然而,我注意到任何特殊字符(而不是符号)如£,÷,€等都不会显示出来。例如,符号€显示为‬。

下面的一些示例代码供参考

首先捕获用户输入文本并将其放入文件的代码

//get user entered text
QuestionEditText = (EditText)this.findViewById(R.id.editTextQuestion);
//put that into json object
JSONObject jObjOneQuestionDetails=new JSONObject();
jObjOneQuestionDetails.put("Question", QuestionEditText.getText());
//write json object  into file
FileOutputStream output = openFileOutput("MyFileName",MODE_PRIVATE);
OutputStreamWriter writer = new OutputStreamWriter(output);
writer.writejObjOneQuestionDetails.put());
writer.flush();
writer.close();

现在低于从文件中获取字符串并将其显示给用户的代码

//define and initialize variables
QuestionEditText = (EditText)this.findViewById(R.id.editTextQuestion);
private JSONArray jArrayQuizQuestions=new JSONArray();
private JSONObject jObjQuizTitle=new JSONObject();

//load JSONObject with the File
int ch;
StringBuffer fileContent = new StringBuffer("");
FileInputStream fis;
String fileString;
fis = this.getBaseContext().openFileInput("MyFileName");
while( (ch = fis.read()) != -1)
          fileContent.append((char)ch);
fileString = new String(fileContent);
jObjQuizTitle = new JSONObject(fileString);
jArrayQuizQuestions = jObjQuizTitle.getJSONArray("MyFileName");


//display json object into textview
JSONObject aQues = jArrayQuizQuestions.getJSONObject(pageNumber-1);
String quesValue = aQues.getString("Question");
QuestionEditText.setText(quesValue.toCharArray(), 0, quesValue.length());       

上面的代码只是一个示例,我在这里忽略了任何try / catch块。这应该可以让我了解如何捕获和显示用户输入的文本。

1 个答案:

答案 0 :(得分:5)

您必须使用“UTF-8”才能使用此类特殊字符。有关详细信息,请阅读http://developer.android.com/reference/java/nio/charset/Charset.html

你必须像这样编码你期望的角色:

URLEncoder.encode("Your Special Character", "UTF8");

您可以从此处查看有关此问题的类似问题:

Android: Parsing special characters (ä,ö,ü) in JSON