Base64Util.java 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. package com.jkcredit.invoice.util;
  2. import org.apache.commons.codec.binary.Base64;
  3. import java.io.*;
  4. public class Base64Util {
  5. public static void main(String [] args){
  6. //将PDF格式文件转成base64编码
  7. String base64String = getPDFBinary(new File("C:\\Users\\msy\\Desktop\\服务及承诺函.pdf"));
  8. //将base64的编码转成PDF格式文件
  9. base64StringToPDF(base64String);
  10. }
  11. public static String fileToBase64(String path) {
  12. int byteread = 0;
  13. String total = null;
  14. byte[] totalbyte = new byte[0];
  15. InputStream inStream = null;
  16. try {
  17. inStream = getStream(path);
  18. byte[] buffer = new byte[1024];
  19. while ((byteread = inStream.read(buffer)) != -1) {
  20. //拼接流,这样写是保证文件不会被篡改
  21. totalbyte = byteMerger(totalbyte, buffer, byteread);
  22. }
  23. } catch (FileNotFoundException e) {
  24. e.printStackTrace();
  25. } catch (IOException e) {
  26. e.printStackTrace();
  27. } finally {
  28. try {
  29. if (null != inStream) {
  30. inStream.close();
  31. }
  32. } catch (IOException e) {
  33. e.printStackTrace();
  34. }
  35. }
  36. return Base64.encodeBase64String(totalbyte);
  37. }
  38. //合并数组
  39. public static byte[] byteMerger(byte[] totalArr, byte[] mergerArr, int mergerLen) {
  40. if (null == totalArr || null == mergerArr){
  41. return totalArr;
  42. }
  43. if (mergerLen == 0 || mergerLen > mergerArr.length) {
  44. throw new RuntimeException("mergerLen : " + mergerArr + " ,mergerArrLen : " + mergerArr.length);
  45. }
  46. int len = totalArr.length;
  47. byte[] reArr = new byte[len + mergerLen];
  48. System.arraycopy(totalArr, 0, reArr, 0, len);
  49. System.arraycopy(mergerArr, 0, reArr, len, mergerLen);
  50. return reArr;
  51. }
  52. //根据 url 获取输入流
  53. public static InputStream getStream(String path) throws IOException {
  54. File file = new File(path);
  55. InputStream in = new FileInputStream(file);
  56. return in;
  57. }
  58. /**
  59. * 精确计算base64字符串文件大小(单位:B)
  60. * @param base64String
  61. * @return
  62. */
  63. public static double base64FileSize(String base64String) {
  64. /**检测是否含有base64,文件头)*/
  65. if (base64String.lastIndexOf(",") > 0) {
  66. base64String = base64String.substring(base64String.lastIndexOf(",")+1);
  67. }
  68. /** 获取base64字符串长度(不含data:audio/wav;base64,文件头) */
  69. int size0 = base64String.length();
  70. /** 获取字符串的尾巴的最后10个字符,用于判断尾巴是否有等号,正常生成的base64文件'等号'不会超过4个 */
  71. String tail = base64String.substring(size0 - 10);
  72. /** 找到等号,把等号也去掉,(等号其实是空的意思,不能算在文件大小里面) */
  73. int equalIndex = tail.indexOf("=");
  74. if (equalIndex > 0) {
  75. size0 = size0 - (10 - equalIndex);
  76. }
  77. /** 计算后得到的文件流大小,单位为字节 */
  78. return size0 - ((double) size0 / 8) * 2;
  79. }
  80. /**
  81. * 将PDF转换成base64编码
  82. * 1.使用BufferedInputStream和FileInputStream从File指定的文件中读取内容;
  83. * 2.然后建立写入到ByteArrayOutputStream底层输出流对象的缓冲输出流BufferedOutputStream
  84. * 3.底层输出流转换成字节数组,然后由BASE64Encoder的对象对流进行编码
  85. * */
  86. public static String getPDFBinary(File file) {
  87. FileInputStream fin =null;
  88. BufferedInputStream bin =null;
  89. ByteArrayOutputStream baos = null;
  90. BufferedOutputStream bout =null;
  91. try {
  92. //建立读取文件的文件输出流
  93. fin = new FileInputStream(file);
  94. //在文件输出流上安装节点流(更大效率读取)
  95. bin = new BufferedInputStream(fin);
  96. // 创建一个新的 byte 数组输出流,它具有指定大小的缓冲区容量
  97. baos = new ByteArrayOutputStream();
  98. //创建一个新的缓冲输出流,以将数据写入指定的底层输出流
  99. bout = new BufferedOutputStream(baos);
  100. byte[] buffer = new byte[1024];
  101. int len = bin.read(buffer);
  102. while(len != -1){
  103. bout.write(buffer, 0, len);
  104. len = bin.read(buffer);
  105. }
  106. //刷新此输出流并强制写出所有缓冲的输出字节,必须这行代码,否则有可能有问题
  107. bout.flush();
  108. byte[] bytes = baos.toByteArray();
  109. return new sun.misc.BASE64Encoder().encodeBuffer(bytes).trim();
  110. } catch (FileNotFoundException e) {
  111. e.printStackTrace();
  112. } catch (IOException e) {
  113. e.printStackTrace();
  114. }finally{
  115. try {
  116. fin.close();
  117. bin.close();
  118. //关闭 ByteArrayOutputStream 无效。此类中的方法在关闭此流后仍可被调用,而不会产生任何 IOException
  119. //baos.close();
  120. bout.close();
  121. } catch (IOException e) {
  122. e.printStackTrace();
  123. }
  124. }
  125. return null;
  126. }
  127. /*
  128. * 将base64编码转换成PDF
  129. * @param base64sString
  130. * 1.使用BASE64Decoder对编码的字符串解码成字节数组
  131. * 2.使用底层输入流ByteArrayInputStream对象从字节数组中获取数据;
  132. * 3.建立从底层输入流中读取数据的BufferedInputStream缓冲输出流对象;
  133. * 4.使用BufferedOutputStream和FileOutputSteam输出数据到指定的文件中
  134. */
  135. public static void base64StringToPDF(String base64sString){
  136. BufferedInputStream bin = null;
  137. FileOutputStream fout = null;
  138. BufferedOutputStream bout = null;
  139. try {
  140. //将base64编码的字符串解码成字节数组
  141. byte[] bytes = new sun.misc.BASE64Decoder().decodeBuffer(base64sString);
  142. //apache公司的API
  143. //byte[] bytes = Base64.decodeBase64(base64sString);
  144. //创建一个将bytes作为其缓冲区的ByteArrayInputStream对象
  145. ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
  146. //创建从底层输入流中读取数据的缓冲输入流对象
  147. bin = new BufferedInputStream(bais);
  148. //指定输出的文件http://m.nvzi91.cn/nxby/29355.html
  149. File file = new File("C:\\Users\\msy\\Desktop\\马圣毅.pdf");
  150. //创建到指定文件的输出流
  151. fout = new FileOutputStream(file);
  152. //为文件输出流对接缓冲输出流对象
  153. bout = new BufferedOutputStream(fout);
  154. byte[] buffers = new byte[1024];
  155. int len = bin.read(buffers);
  156. while(len != -1){
  157. bout.write(buffers, 0, len);
  158. len = bin.read(buffers);
  159. }
  160. //刷新此输出流并强制写出所有缓冲的输出字节,必须这行代码,否则有可能有问题
  161. bout.flush();
  162. } catch (IOException e) {
  163. e.printStackTrace();
  164. }finally{
  165. try {
  166. bin.close();
  167. fout.close();
  168. bout.close();
  169. } catch (IOException e) {
  170. e.printStackTrace();
  171. }
  172. }
  173. }
  174. }