1

我在安卓上工作。我的 android 应用程序成功在 SD 卡内存中创建了一个文本文件;创建的文本文件可以在 DDMS 资源管理器中看到,但在 Windows 资源管理器中看不到。这是我的代码:

private void initFile(String filename, char[] data, int length){

       File File = new File(Environment.getExternalStorageDirectory() + File.separator + "Download" + File.separator + filename);

       try {
           File.delete();
           File.createNewFile();

           FileOutputStream fOut = new FileOutputStream(mFile);
           OutputStreamWriter myOutWriter = new OutputStreamWriter(fOut);

           if(mFile.exists())
           {
               myOutWriter.write(data,0,length);
               myOutWriter.flush();
               myOutWriter.close();
               fOut.close();
           }

       } catch (IOException e) {
           // TODO Auto-generated catch block
           e.printStackTrace();
       }



   }

注意:但是如果我重新启动 android,则可以在 windows 资源管理器中看到创建的文本文件。

你知道为什么会这样吗?为什么在 DDMS 中可以看到在 android 中创建的文件在 windows 资源管理器中看不到?

我使用真正的安卓平板电脑。

4

1 回答 1

1

您必须将文件从DDMS 文件资源管理器拉到Windows 文件资源管理器。您必须在DDMS 文件资源管理器中选择文件,然后单击按钮从DDMS 文件资源管理器窗口右侧的设备中提取文件,并将其保存在您希望的任何文件夹中。之后,您可以在Windows FileExplorer中看到它

于 2012-04-16T09:10:21.737 回答