2

我用的安卓版本是4.2

我想通过使用这个来获取存储文件的路径

String file = Environment.getExternalFilesDir() + "/"+title+".zip" 

我收到此错误:

The method getExternalFilesDir() is undefined for the type Environment 

但是,Environment 类确实有这个方法,为什么会出现这个错误?

4

1 回答 1

2

getExternalFilesDir()是一种方法Context

环境有其他方法,但不是那个。

这个答案也解释了它们之间的区别。

于 2013-02-16T21:52:29.687 回答