/**
* <p>将文件转成base64 字符串</p>
* @param path 文件路径
* @return
* @throws Exception
*/
public static String encodeBase64File(String path) throws Exception {
File file = new File(path);
FileInputStream inputFile = new FileInputStream(file);
byte[] buffer = new byte[(int)file.length()];
inputFile.read(buffer);
inputFile.close();
// return new android.util.Base64;
MyUtils.myLog("------------", file+"===="+ "");
return android.util.Base64.encodeToString(buffer, Base64.DEFAULT);
}
/**
* <p>将base64字符解码保存文件</p>
* @param base64Code
* @param targetPath
* @throws Exception
*/
public static void decoderBase64File(String base64Code,String targetPath) throws Exception {
byte [] baseByte = android.util.Base64.decode(base64Code, Base64.DEFAULT);

// byte[] buffer = new BASE64Decoder().decodeBuffer(base64Code);
FileOutputStream out = new FileOutputStream(targetPath);
out.write(baseByte);
out.close();
}
/**
* <p>将base64字符保存文本文件</p>
* @param base64Code
* @param targetPath
* @throws Exception
*/
public static void toFile(String base64Code,String targetPath) throws Exception {
byte[] buffer = base64Code.getBytes();
FileOutputStream out = new FileOutputStream(targetPath);
out.write(buffer);
out.close();
}
public static void main(String[] args) {
try {
String base64Code =encodeBase64File("D:\\1.jpg");
System.out.println(base64Code);
decoderBase64File(base64Code, "D:\\2.jpg");
toFile(base64Code, "D:\\three.txt");
} catch (Exception e) {
e.printStackTrace();
}
}

更多相关文章

  1. Intent打开各种类型的文件
  2. android studio恢复误删文件
  3. Android SD 卡文件浏览器
  4. Android 获取文件的缩略图
  5. Android 文件相关总结
  6. android私有文件资源文件的存取
  7. Android调用系统自带的文件管理器进行文件选择
  8. Android判断有无外置SD卡(TF卡),并读写文件

随机推荐

  1. android中scrollTo和scrollBy的理解
  2. Activity四种启动模式及应用
  3. Android中滑屏实现----手把手教你如何实
  4. Android(安卓)软键盘之 windowSoftInputM
  5. Android最佳实践之后台任务
  6. android audio系统的概况
  7. 简单实现Android文件上传
  8. Android实现延迟退出主界面功能
  9. GitHub上受欢迎的Android(安卓)UI 库2
  10. android LayoutInflater实例化的方法