openFileInput()没有继承Activity类时,如何使用

public  class FileProcess

{

    public void readData(String fileName){

        try{

             FileInputStream fileIn = openFileInput(fileName);

             int length = fileIn.available();

             byte[] buffer = new byte[length];

             fileIn.read(buffer);

             fileIn.close();

         }catch(Exception e){

            e.printStackTrace();

         }

     }

}

由于这个类没有继承Activity类,openFileInput()会一直报错,有什么解决方法?

FanTuan_Rain
浏览 1816回答 1
1回答

胖鸟

openFileInput是属于Context类的方法,你创建的时候传递进来context不就好了吗
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Android