我正在尝试将一些从动态创建的EditTexts中获取的值写入文件.CititTexts位于数组列表中,我得到它们的值并将它们放在字符串[]中。 然后我需要将这些值放在这样的文件中:
product[1] : quantity[1] : price[1]
product[2] : quantity[2] : price[2]
.....
product[n] : quantity[n] : price[n]
我试过了:
private void writeToSDFile(){
File root = android.os.Environment.getExternalStorageDirectory();
totalc.append("\nExternal file system root: "+root);
File dir = new File (root.getAbsolutePath() + "/download");
dir.mkdirs();
File file = new File(dir, "myData.txt");
try {
FileOutputStream f = new FileOutputStream(file);
PrintWriter pw = new PrintWriter(f);
pw.write("Total : ");
pw.println(totaltest + price[1]);
pw.flush();
pw.close();
f.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
Log.i(TAG, "******* File not found. Did you" +
" add a WRITE_EXTERNAL_STORAGE permission to the manifest?");
} catch (IOException e) {
e.printStackTrace();
}
totalc.append("\n\nFile written to "+file);
}
我试过把价格[1],以测试它是否有效但是没有。 它在LogCat中给出了以下错误:
06-13 21:23:43.525: E/AndroidRuntime(25345): FATAL EXCEPTION: main
06-13 21:23:43.525: E/AndroidRuntime(25345): java.lang.ArrayIndexOutOfBoundsException: length=0; index=1
06-13 21:23:43.525: E/AndroidRuntime(25345): at com.example.testlayout.MainActivity.writeToSDFile(MainActivity.java:89)
那么?如何将这些值发送到我的文件? 谢谢!
编辑: 这是我声明我的数组的地方和方式:
private String[] cant = new String[allcant.size()];
private String[] pret = new String[allpret.size()];
private String[] prod = new String[allpret.size()];
public void calculeaza() {
totaltest = 0;
String[] prod = new String[allprod.size()];
for (int m = 0; m < allprod.size(); m++) {
prod[m] = allcant.get(m).getText().toString();
if (prod[m].matches("")) {
// Toast.makeText(this,
// "Ati omis cantitatea de pe pozitia " + (m + 1),
// Toast.LENGTH_SHORT).show();
prod[m] = Float.toString(0);
}
}
String[] cant = new String[allcant.size()];
for (int j = 0; j < allcant.size(); j++) {
cant[j] = allcant.get(j).getText().toString();
if (cant[j].matches("")) {
// Toast.makeText(this,
// "Ati omis cantitatea de pe pozitia " + (j + 1),
// Toast.LENGTH_SHORT).show();
cant[j] = Float.toString(0);
}
}
String[] pret = new String[allpret.size()];
for (int k = 0; k < allpret.size(); k++) {
pret[k] = allpret.get(k).getText().toString();
if (pret[k].matches("")) {
//Toast.makeText(this,
// "Ati omis pretul de pe pozitia " + (k + 1),
// Toast.LENGTH_SHORT).show();
pret[k] = Float.toString(0);
}
}
for (int l = 0; l < allpret.size(); l++) {
Float temp = Float.parseFloat(cant[l]) * Float.parseFloat(pret[l]);
alltotal.add(temp);
totaltest = totaltest + temp;
TextView totalf = (TextView) findViewById(R.id.total);
totalf.setText(String.format("Total: %.2f", totaltest));
}
}
问题可能是我宣布了两次?一旦进入方法并进入内部?但是,如果我不在里面宣布它,它会崩溃。任何人都可以告诉我为什么?
答案 0 :(得分:1)
您所犯的错误表明您实际上是在访问价格[1]但价格[]的长度为0,换句话说是空的。
答案 1 :(得分:1)
从logcat输出中我们可以看出问题不一定与您的文件编写代码有关,而在于您的数组。数组为空,但您尝试从中引用元素。为了正确测试,请尝试在pw.println(totaltest + price[1]);
上面添加此代码:
price = {111,222,333};
结果应该打印totaltest + 222的值;
答案 2 :(得分:1)
你的数组是空的。我建议你检查原因。
以这种方式创建数组:
int[] name = new int[size];
您可能将size
设置为0或以这种方式初始化数组:
int[] name = new int[]{}; // creates an empty array