0

我正在研究一种将 XML 文件写入设备的方法。我已经在清单文件中允许了外部存储,但我在应该在的位置找不到该文件。

这是我的代码:

 public static void write (){   
 Serializer serial = new Persister();
 File sdcardFile = new File("/Prueba/file.xml");
    Item respuestas = new Item();

   try {
 serial.write(respuestas, sdcardFile);
   } catch (Exception e) {
// There is the possibility of error for a number of reasons. Handle this     appropriately in your code
e.printStackTrace();
         }
         Log.i(TAG, "XML Written to File: " + sdcardFile.getAbsolutePath());
   }

   }
4

1 回答 1

1

SD卡文件路径问题。这是在 file.xml 文件中写入字符串的示例。

File myFile = new File("/sdcard/file.xml");



try {
            File myFile = new File("/sdcard/file.xml");
            myFile.createNewFile();
            FileOutputStream fOut = new FileOutputStream(myFile);
            OutputStreamWriter myOutWriter = 
                                    new OutputStreamWriter(fOut);
            myOutWriter.append("encodedString");
            myOutWriter.close();
            fOut.close();

        } catch (Exception e) {

        }

您可以通过这种方式获取外部存储名称,

String root = Environment.getExternalStorageDirectory().toString();
于 2013-02-26T09:38:16.433 回答