我有一个应用程序,我将用户输入的文本存储到 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 块。这应该让我了解我如何捕获和显示用户输入的文本。