org.apache.felix.framework.util.Util.encode()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(1.6k)|赞(0)|评价(0)|浏览(184)

本文整理了Java中org.apache.felix.framework.util.Util.encode()方法的一些代码示例,展示了Util.encode()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.encode()方法的具体详情如下:
包路径:org.apache.felix.framework.util.Util
类名称:Util
方法名:encode

Util.encode介绍

[英]Encode a raw byte array to a Base64 String.
[中]将原始字节数组编码为Base64字符串。

代码示例

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. public static String base64Encode(String s) throws IOException
  2. {
  3. return encode(s.getBytes(), 0);
  4. }

代码示例来源:origin: apache/felix

  1. public static String base64Encode(String s) throws IOException
  2. {
  3. return encode(s.getBytes(), 0);
  4. }

代码示例来源:origin: apache/felix

  1. /**
  2. * Encode a raw byte array to a Base64 String.
  3. *
  4. * @param in Byte array to encode.
  5. * @param len Length of Base64 lines. 0 means no line breaks.
  6. **/
  7. public static String encode(byte[] in, int len) throws IOException
  8. {
  9. ByteArrayOutputStream baos = null;
  10. ByteArrayInputStream bais = null;
  11. try
  12. {
  13. baos = new ByteArrayOutputStream();
  14. bais = new ByteArrayInputStream(in);
  15. encode(bais, baos, len);
  16. // ASCII byte array to String
  17. return (new String(baos.toByteArray()));
  18. }
  19. finally
  20. {
  21. if (baos != null)
  22. {
  23. baos.close();
  24. }
  25. if (bais != null)
  26. {
  27. bais.close();
  28. }
  29. }
  30. }

代码示例来源:origin: org.apache.servicemix.kernel/org.apache.servicemix.kernel.main

  1. /**
  2. * Encode a raw byte array to a Base64 String.
  3. *
  4. * @param in Byte array to encode.
  5. * @param len Length of Base64 lines. 0 means no line breaks.
  6. **/
  7. public static String encode(byte[] in, int len) throws IOException
  8. {
  9. ByteArrayOutputStream baos = null;
  10. ByteArrayInputStream bais = null;
  11. try
  12. {
  13. baos = new ByteArrayOutputStream();
  14. bais = new ByteArrayInputStream(in);
  15. encode(bais, baos, len);
  16. // ASCII byte array to String
  17. return (new String(baos.toByteArray()));
  18. }
  19. finally
  20. {
  21. if (baos != null)
  22. {
  23. baos.close();
  24. }
  25. if (bais != null)
  26. {
  27. bais.close();
  28. }
  29. }
  30. }

相关文章