118b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu/*
218b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * Copyright (C) 2014 The Android Open Source Project
318b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu *
418b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * Licensed under the Apache License, Version 2.0 (the "License");
518b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * you may not use this file except in compliance with the License.
618b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * You may obtain a copy of the License at
718b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu *
818b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu *      http://www.apache.org/licenses/LICENSE-2.0
918b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu *
1018b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * Unless required by applicable law or agreed to in writing, software
1118b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * distributed under the License is distributed on an "AS IS" BASIS,
1218b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1318b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * See the License for the specific language governing permissions and
1418b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu * limitations under the License.
1518b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu */
1618b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu
1718b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhupackage android.test.wakeuploop;
1818b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu
1918b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhuimport android.util.Log;
2018b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu
2118b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhuimport java.io.File;
2218b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhuimport java.io.FileOutputStream;
2318b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhuimport java.io.IOException;
2418b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhuimport java.text.DateFormat;
2518b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhuimport java.text.SimpleDateFormat;
2618b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhuimport java.util.Date;
2718b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu
2818b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhupublic class FileUtil {
2918b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu
3018b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu    private static FileUtil sInst = null;
3118b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu    private static DateFormat sDateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
3218b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu
3318b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu    private FileUtil() {};
3418b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu
3518b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu    public static FileUtil get() {
3618b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu        if (sInst == null) {
3718b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu            sInst = new FileUtil();
3818b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu        }
3918b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu        return sInst;
4018b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu    }
4118b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu
4218b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu    public void writeDateToFile(File file) {
4318b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu        try {
4418b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu            FileOutputStream fos = new FileOutputStream(file);
4518b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu            fos.write(sDateFormat.format(new Date()).getBytes());
4618b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu            fos.write('\n');
4718b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu            fos.flush();
4818b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu            fos.close();
4918b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu        } catch (IOException ioe) {
5018b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu            Log.e("FileUtil", "exception writing date to file", ioe);
5118b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu        }
5218b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu    }
5318b892c723e812a7e111f102d2b0c0782b116bb6Guang Zhu}
54