我正在尝试保存html文件。我有扩展AsyncTask的类
public class DownloadBook extends AsyncTask<String, Void, String> {
在这个课程中,我有这个方法:
private void writeFile(String result, String title) throws FileNotFoundException {
FileOutputStream fos = openFileOutput(title+".html", MODE_PRIVATE);
PrintWriter pw = new PrintWriter(new BufferedWriter(
new OutputStreamWriter(fos)));
pw.print(result);
pw.close();
}
MODE_PRIVATE发出以下错误:
MODE_PRIVATE无法解析为变量
然后我将其更改为 Context.MODE_PRIVATE 。现在openFileOutput给出了这个错误:
对于类型,未定义openFileOutput(String,int)方法 DownloadBook
如何解决这个问题?
答案 0 :(得分:3)
使用活动或应用程序上下文从openFileOutput
类调用DownloadBook
方法:
FileOutputStream fos =
getApplicationContext().openFileOutput( title+".html", Context.MODE_PRIVATE);
如果DownloadBook
是单独的java类,则使用类构造函数获取调用openFileOutput
方法的Activity上下文:
public class DownloadBook extends AsyncTask<String, Void, String> {
private Context context;
public DownloadBook(Context context){
this.context=context;
}
}
现在使用context
来调用openFileOutput
方法:
FileOutputStream fos =
context.openFileOutput( title+".html", Context.MODE_PRIVATE);
从Activity传递上下文到DownloadBook类构造函数:
DownloadBook obj_Downloadbook=new DownloadBook(getApplicationContext());