Android中使用File的时候File.separator的用法

之前在项目中要对文件经行加密操作,加密的思路是获取源文件的file.getAbsolutePath();然后对新建文件,对想要加密的文件的路径进行分解得到父路径file.getParent(); 然后 String encryptFilePath = String.format("%s%s%s", file.getParent(), File.separator, file.getName()); 这个是构建新文件的绝对路径。其中有个参数File.separator,可能有的人对这个比较陌生,在Windows下的路径分隔符和Linux下的路径分隔符是不一样的,当直接使用绝对路径时,跨平台会暴出“No such file or diretory”的异常。


比如说要在temp目录下建立一个test.txt文件,在Windows下应该这么写:
File file1 = new File ("C:\tmp\test.txt");
在Linux下则是这样的:
File file2 = new File ("/tmp/test.txt");

如果要考虑跨平台,则最好是这么写:
File myFile = new File("C:" + File.separator + "tmp" + File.separator, "test.txt");

File类有几个类似separator的静态字段,都是与系统相关的,在编程时应尽量使用。

separatorChar

public static final char separatorChar

与系统有关的默认名称分隔符。此字段被初始化为包含系统属性 file.separator 值的第一个字符。在 UNIX 系统上,此字段的值为 '/';在 Microsoft Windows 系统上,它为 '\'。

separator

public static final String separator

与系统有关的默认名称分隔符,为了方便,它被表示为一个字符串。此字符串只包含一个字符,即 separatorChar。

pathSeparatorChar

public static final char pathSeparatorChar

与系统有关的路径分隔符。此字段被初始为包含系统属性 path.separator 值的第一个字符。此字符用于分隔以路径列表 形式给定的文件序列中的文件名。在 UNIX 系统上,此字段为 ':';在 Microsoft Windows 系统上,它为 ';'。

pathSeparator

public static final String pathSeparator

与系统有关的路径分隔符,为了方便,它被表示为一个字符串。此字符串只包含一个字符,即 pathSeparatorChar。

接下来贴上文件加密操作的工具类代码,其中使用的是facebook的库


import android.content.Context;
import android.text.TextUtils;

import com.facebook.android.crypto.keychain.SharedPrefsBackedKeyChain;
import com.facebook.crypto.Crypto;
import com.facebook.crypto.Entity;
import com.facebook.crypto.exception.CryptoInitializationException;
import com.facebook.crypto.exception.KeyChainException;
import com.facebook.crypto.util.SystemNativeCryptoLibrary;

import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;

public class ConcealUtil {
    private static final String DEFAULT_ENCODE = "utf-8";

    public static final String ENTITY = "ttdevs", PREFIX_E = "encrypt_", PREFIX_D = "decrypt_";

    private static SharedPrefsBackedKeyChain msp;
    private static Crypto mCrypto;
    private static Entity mEntity;

    public static void init(Context context) {
        if (null == mCrypto) {
            msp = new SharedPrefsBackedKeyChain(context);
            mCrypto = new Crypto(msp, new SystemNativeCryptoLibrary());
            mEntity = new Entity(ENTITY);
        }
    }

    /**
     * 加密字节数组
     *
     * @param content 原始字节数组
     * @return 密文
     */
    public static byte[] encryptByte(byte[] content) {
        if (!mCrypto.isAvailable()) {
            return null;
        }

        if (null == content || content.length == 0) {
            return null;
        }

        try {
            byte[] cipherText = mCrypto.encrypt(content, mEntity);// 密文数组

            return cipherText; // 密文字符串
        } catch (KeyChainException e) {
            e.printStackTrace();
        } catch (CryptoInitializationException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

    /**
     * 解密字节数组
     *
     * @param content 密文
     * @return 原始字节数组
     */
    public static byte[] decryptByte(byte[] content) {
        if (!mCrypto.isAvailable()) {
            return null;
        }

        if (null == content || content.length == 0) {
            return null;
        }

        try {
            byte[] result = mCrypto.decrypt(content, mEntity);

            return result;
        } catch (KeyChainException e) {
            e.printStackTrace();
        } catch (CryptoInitializationException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

    /**
     * 加密字符串
     *
     * @param content 原始字符串
     * @return 加密后字节数组
     */
    public static byte[] encryptString(String content) {
        if (TextUtils.isEmpty(content)) {
            return null;
        }

        try {
            byte[] result = encryptByte(content.getBytes(DEFAULT_ENCODE));
            // TODO
            return result; // 密文
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        return null;
    }

    /**
     * 解密出字符串 (字符编码采用默认)
     *
     * @param source 密文
     * @return 原始字符串
     */
    public static String decryptString(byte[] source) {
        if (null == source || source.length == 0) {
            return null;
        }

        try {
            byte[] data = decryptByte(source);
            String result = new String(data, DEFAULT_ENCODE);
            // TODO
            return result;
        } catch (NullPointerException e) {
            e.printStackTrace();
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        }
        return null;
    }

    /**
     * 加密文件,加密后会在文件前加前缀:encrypt_
     *
     * @param file 文件
     * @return
     */
    public static File encryptFile(File file) {
        if (!mCrypto.isAvailable()) {
            return null;
        }

        if (null == file) {
            return null;
        }

        String originFilePath = file.getAbsolutePath();
        String encryptFilePath = String.format("%s%s%s%s", file.getParent(), File.separator, PREFIX_E, file.getName());

        File encryptFile = new File(encryptFilePath);
        if (encryptFile.exists()) { // 判断最终加密的文件是否存在,若存在就删除
            encryptFile.deleteOnExit();
        }

        try {
            FileInputStream sourceFile = new FileInputStream(originFilePath);

            OutputStream fileOS = new BufferedOutputStream(new FileOutputStream(encryptFile));
            OutputStream out = mCrypto.getCipherOutputStream(fileOS, mEntity);

            int read = 0;
            byte[] buffer = new byte[1024];
            while ((read = sourceFile.read(buffer)) != -1) {
                out.write(buffer, 0, read);
            }

            out.flush();
            fileOS.flush();
            out.close();
            fileOS.close();

            sourceFile.close();

            return encryptFile;
        } catch (IOException e) {
            e.printStackTrace();
        } catch (CryptoInitializationException e) {
            e.printStackTrace();
        } catch (KeyChainException e) {
            e.printStackTrace();
        }

        return null;
    }

    public static File decryptFile(File file) {
        if (!mCrypto.isAvailable()) {
            return null;
        }

        if (null == file) {
            return null;
        }

        String fileName = file.getName();
        fileName = fileName.substring(PREFIX_E.length(), fileName.length());
        String originFilePath = file.getAbsolutePath();
        String decryptFilePath = String.format("%s%s%s%s", file.getParent(), File.separator, PREFIX_D, fileName);

        File decryptFile = new File(decryptFilePath);
        if (decryptFile.exists()) {
            decryptFile.deleteOnExit();
        }

        try {
            FileInputStream fileInputStream = new FileInputStream(originFilePath);
            InputStream inputStream = mCrypto.getCipherInputStream(fileInputStream, mEntity);

            OutputStream out = new BufferedOutputStream(new FileOutputStream(decryptFile));
            int read = 0;
            byte[] buffer = new byte[1024];
            while ((read = inputStream.read(buffer)) != -1) {
                out.write(buffer, 0, read);
            }

            out.flush();
            out.close();

            inputStream.close();
            fileInputStream.close();
            return decryptFile;
        } catch (IOException e) {
            e.printStackTrace();
        } catch (CryptoInitializationException e) {
            e.printStackTrace();
        } catch (KeyChainException e) {
            e.printStackTrace();
        }

        return null;
    }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值