1

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

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

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

//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 块。这应该让我了解我如何捕获和显示用户输入的文本。

4

1 回答 1

5

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

您必须像这样为您的预期字符编码:

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

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

Android:解析 JSON 中的特殊字符 (ä,ö,ü)

于 2013-10-20T07:04:47.167 回答