lizhanwei
2020-02-12 c7f9fb2ac4e14dd56fb7638f49d8a7d2192bea9e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
package safeluck.drive.evaluation.util;
 
import android.app.Application;
import android.content.Context;
import android.content.res.Resources;
import android.os.Environment;
import android.text.TextUtils;
import android.util.Log;
 
import com.anyun.exam.lib.MyLog;
import com.anyun.exam.lib.util.ByteUtil;
 
import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
 
public class FileUtil {
    private static final String TAG = "FileUtil";
    /**
     * 读取assert目录下 txt文本文件内容
     * @param context
     * @param assetFileName
     * @return
     */
    public static StringBuffer readAssetTxtFile(Context context, String assetFileName) {
        String lineTxt = null;
        StringBuffer stringBuffer = new StringBuffer();
        try {
            InputStream inputStream = null;
            try {
                inputStream = context.getAssets()
                        .open(assetFileName);
            } catch (IOException e) {
                e.printStackTrace();
            }
 
            InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
            BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
            while((lineTxt = bufferedReader.readLine()) != null){
                System.out.println(lineTxt);
                stringBuffer.append(lineTxt);
 
            }
            inputStreamReader.close();
            bufferedReader.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return stringBuffer;
    }
 
    public static void createdirs(Context context){
        String dir = Environment.getExternalStorageDirectory().getAbsolutePath()+"/"+context.getPackageName();
 
        File file = new File(dir);
        if (!file.exists()){
            file.mkdir();
        }else{
            Log.i(TAG, "createdirs: 目录已经存在");
        }
 
    }
 
    public static StringBuffer readTxtFileFromSD(Context context,String fileName,boolean isRootDir){
        String lineTxt = null;
        StringBuffer stringBuffer = new StringBuffer();
        try {
            String dir = Environment.getExternalStorageDirectory().getAbsolutePath()+"/";
            InputStream inputStream = null;
            if (isRootDir){
 
            }else{
 
                dir = dir+context.getPackageName();
            }
            File file = new File(dir,fileName);
            if (!file.exists()){
                MyLog.d(TAG,dir+"目录下"+fileName+"文件不存在");
                return null;
            }
            try {
                inputStream = new FileInputStream(file);
            } catch (IOException e) {
                e.printStackTrace();
            }
 
            InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
            BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
            while((lineTxt = bufferedReader.readLine()) != null){
                System.out.println(lineTxt);
                stringBuffer.append(lineTxt);
 
            }
            inputStreamReader.close();
            bufferedReader.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return stringBuffer;
    }
    public static StringBuffer readMCUtFileFromSD(Context context,String fileName){
        String lineTxt = null;
        StringBuffer stringBuffer = new StringBuffer();
        try {
            String dir = Environment.getExternalStorageDirectory().getAbsolutePath()+"/";
            InputStream inputStream = null;
 
            File file = new File(dir,fileName);
            if (!file.exists()){
                MyLog.d(TAG,dir+"目录下"+fileName+"文件不存在");
                return null;
            }
            try {
                inputStream = new FileInputStream(file);
            } catch (IOException e) {
                e.printStackTrace();
            }
 
            InputStreamReader inputStreamReader = new InputStreamReader(inputStream,"GB2312");
            BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
            while((lineTxt = bufferedReader.readLine()) != null){
//                System.out.println(   ByteUtil.byte2hex(lineTxt.getBytes("ISO-8859-1")));
 
                stringBuffer.append(lineTxt);
 
            }
            inputStreamReader.close();
            bufferedReader.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return stringBuffer;
    }
    /**
     *
     * @param fromFile 源文件路径包括文件名(绝对路径)
     * @param toFile
     */
    public static void copyFile(String fromFile,String toFile){
 
        try {
            InputStream inputStream =new FileInputStream(fromFile);
            OutputStream outputStream = new FileOutputStream(toFile);
            byte[] bytes = new byte[1024];
            while ((inputStream.read(bytes))>0){
                outputStream.write(bytes);
            }
            inputStream.close();
            outputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
 
    }
 
    /**
     * 拷贝assert目录下的文件到 安装包目录下
     * @param context
     * @param assertfileName
     */
    public static void copyAssertFileToSD(Context context,String assertfileName){
        try {
            InputStream inputStream = null;
            try {
                inputStream = context.getAssets()
                        .open(assertfileName);
            } catch (IOException e) {
                e.printStackTrace();
            }
            OutputStream outputStream = new FileOutputStream(  new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/"+context.getPackageName(), assertfileName));
            byte[] bytes = new byte[1024];
            while ((inputStream.read(bytes))>0){
                outputStream.write(bytes);
            }
            inputStream.close();
            outputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 删除某个文件
     * @param parentPathName 当前文件的父目录一直到根目录(不包括根目录)
     * @param fileName 文件名
     */
    public static void deleteFile(String parentPathName, String fileName){
        String dir =Environment.getExternalStorageDirectory().getAbsolutePath()+"/";
        dir = dir+parentPathName;
        MyLog.i(TAG,"删除文件"+dir+fileName);
        File file = new File(dir,fileName);
        if (file.exists()){
            file.delete();
        }
    }
    public static byte[] readLocalFile(Context context,String fileName) throws IOException {
        InputStream inputStream = null;
        String dir = Environment.getExternalStorageDirectory().getAbsolutePath()+"/";
        File file = new File(dir,fileName);
        if (!file.exists()){
            MyLog.d(TAG,dir+"目录下"+fileName+"文件不存在");
            return null;
        }
        try {
            inputStream = new FileInputStream(file);
        } catch (IOException e) {
            e.printStackTrace();
        }
        byte[] data = toByteArray(inputStream);
        inputStream.close();
        return data;
    }
    private static byte[] toByteArray(InputStream in) throws IOException {
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        byte[] buffer = new byte[1024 * 4];
        int n = 0;
        while ((n = in.read(buffer)) != -1) {
            out.write(buffer, 0, n);
        }
        return out.toByteArray();
    }
 
}