标签: android environment
我使用的Android版本是4.2
我希望使用此
String file = Environment.getExternalFilesDir() + "/"+title+".zip"
我收到此错误:
The method getExternalFilesDir() is undefined for the type Environment
但是,Environment类确实有这个方法,为什么会出现这个错误?
答案 0 :(得分:2)
getExternalFilesDir()是Context的方法。
getExternalFilesDir()
Context
Environment有其他方法,但不是那个方法。
This answer也解释了它们之间的区别。