我有以下问题:Android 的服务会使用下面发布的方法覆盖文件吗?我想要得到的是每次应用程序运行时下载文件 - 通过服务,但我不确定文件是否被覆盖。我试图从 Android 文件资源管理器中提取文件并检查创建日期和时间,但它总是有从设备中提取的时间,而不是实际创建文件的时间。在下面发布我的方法:
public static void downloadFile(String sUrl, String fileName, String sharedPref, Context context) {
try {
HttpClient client = new CustomHttpClient(
context.getApplicationContext());
HttpGet request = new HttpGet(sUrl);
HttpResponse response = client.execute(request);
String responseAsString = EntityUtils.toString(response.getEntity());
OutputStreamWriter outputStreamWriter = new OutputStreamWriter(
context.openFileOutput(fileName, Context.MODE_PRIVATE));
outputStreamWriter.write(responseAsString);
outputStreamWriter.close();
PreferenceManager
.getDefaultSharedPreferences(context)
.edit().putString(sharedPref, "1").commit();
} catch (Exception e) {
System.out.println("Exc=" + e);
}
}