我在创建和编辑文本文件时遇到了一些问题。该文件似乎从未存储数据。
- 如果一个文本文件不可用,我需要创建一个文本文件。
- 如果文件中有数据,请读取该数据并使其可用。
- 存储的数据
String
由三个整数值组成,由,
Eg 分隔:String finalWrite = "3,5,1"
- 所以这个字符串需要被拆分,并转换为整数以允许添加新的计数器。
- 这些新的计数器需要写入存储在设备上的文本文件中
没有错误发生,也没有强制关闭。
我只能使用 Logcat 弄清楚这些值没有被正确存储。
我已经查看了Android开发站点上的文档。如果有人可以帮助或指出我正确的方向,将不胜感激!
我正在使用的写入方法:
public void WriteItIn() throws IOException
{
FileOutputStream fOut = openFileOutput("stats.txt", Context.MODE_WORLD_READABLE);
OutputStreamWriter osw = new OutputStreamWriter(fOut);
ReadItIn(); //calls the read method, to get the values from the file
int tmp1 = 0 + countertmp + counter;
int tmp2 = 0 + counterpostmp + counterpos;
int tmp3 = 0 + counternegtmp + counterneg;
finalwrite = "" + tmp1 + "," + tmp2 + "," + tmp3;
osw.write(finalwrite);
osw.flush();
osw.close();
}
读取方法:
public void ReadItIn() throws IOException
{
FileInputStream fIn = openFileInput("stats.txt");
InputStreamReader isr = new InputStreamReader(fIn);
char[] inputBuffer = new char[fIn.available()];
isr.read(inputBuffer);
stringFromFile = new String(inputBuffer);
String [] tmp = stringFromFile.split("\\,");
if(tmp.length > 0)
{
Log.d("READ", " NOT NULL");
for(int i = 0;i<tmp.length ; i++)
{
String temper = tmp[i];
if(temper == null || temper == "")
{
Log.d("NULL", "NULLIFIED");
}
else
try
{
int x = Integer.parseInt(temper, 10);
if(i == 0){counter = x;}
else if(i == 1){counterpos = x;}
else if(i == 2){counterneg = x;}
}
catch(NumberFormatException e)
{
e.printStackTrace();
}
}
}
else
Log.d("READ", "NULL");
}