利用JAVA怎样把String转换成base64-CSDN论坛

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用JAVA怎样把String转换成base64-CSDN论坛相关的知识,希望对你有一定的参考价值。

JAVA 内置的?

import sun.misc.*;

public class Base64
// 加密
public static String getBase64(String str)
byte[] b = null;
String s = null;
try
b = str.getBytes("utf-8");
catch (UnsupportedEncodingException e)
e.printStackTrace();

if (b != null)
s = new BASE64Encoder().encode(b);

return s;


// 解密
public static String getFromBase64(String s)
byte[] b = null;
String result = null;
if (s != null)
BASE64Decoder decoder = new BASE64Decoder();
try
b = decoder.decodeBuffer(s);
result = new String(b, "utf-8");
catch (Exception e)
e.printStackTrace();


return result;



JDK 1.7 及之后,不建议使用了,那可以使用apache的 codec组件。
参考技术A JAVA 内置的
import sun.misc.*;
public class Base64
// 加密
public static String getBase64(String str)
byte[] b = null;
String s = null;
try
b = str.getBytes("utf-8");
catch (UnsupportedEncodingException e)
e.printStackTrace();

if (b != null)
s = new BASE64Encoder().encode(b);

return s;

public static String getFromBase64(String s)
byte[] b = null;
String result = null;
if (s != null)
BASE64Decoder decoder = new BASE64Decoder();
try
b = decoder.decodeBuffer(s);
result = new String(b, "utf-8");
catch (Exception e)
e.printStackTrace();


return result;

JAVA中怎么把字符串转换成字符数组

JAVA中把字符串转换成字符数组的方法:java中通常用split()分割字符串,返回的是一个数组。

1、如果用“.”作为分隔的话,必须是如下写法,String.split("\\\\."),这样才能正确的分隔开,不能用String.split(".");

2、如果用“|”作为分隔的话,必须是如下写法,String.split("\\\\|"),这样才能正确的分隔开,不能用String.split("|");

3、如果在一个字符串中有多个分隔符,可以用“|”作为连字符,如,“acount=? and uu =? or n=?”,把三个都分隔出来,可以用string.split("and|or");

4、如果想在串中使用"\\"字符,则也需要转义.首先要表达"aaaa\\bbbb"这个串就应该用"aaaa\\\\bbbb",如果要分隔就应该这样才能得到正确结果,

String[] aa = "aaa\\\\bbb\\\\bccc".split("\\\\\\\\");

5、如果是"abc"这种字符串,就直接

String string = "abc"
;

char [] stringArr =
string.toCharArray(); //注意返回值是char数组

6、如果要返回byte数组就直接使用getBytes方法就ok了:
<span style="white-space:pre"> </span>String string = "abc" ;
<span style="white-space:pre"> </span>byte [] stringArr = string.getBytes();

参考技术A

方法有很多,用api吧,简单一点,我写一下吧!

import java.util.Scanner;
public class  ToCharArray

private static Scanner sc=new Scanner(System.in);
public static void main(String[] args) 

System.out.println("\\n\\t\\t==========字符串转数组!==========\\n");
init();
//初始化!
private static void init()

for (; ; )

print(input().toCharArray());


//录入!
private static String input()

System.out.println("\\n=====请随便输入:=====");
String s=sc.next();

return s;

//打印!
private static void print(char[] arr)

System.out.print("\\n=======数组打印=======:\\n");
for (int i=0;i<arr.length ;i++ )

System.out.print(arr[i]);

System.out.print("\\n=====================\\n");

参考技术B

java有api可以做到,以下是程序和运行结果。

方法介绍如下:   

  /**

     * Converts this string to a new character array.

     *

     * @return  a newly allocated character array whose length is the length

     *          of this string and whose contents are initialized to contain

     *          the character sequence represented by this string.

     */

    public char[] toCharArray()

    char result[] = new char[count];

    getChars(0, count, result, 0);

    return result;

   

参考技术C 使用split()方法可以将一个字符串分割为子字符串,然后将结果作为字符串数组返回。
示例代码:
String str =" a1.jpg,a2.jpg,a3.jpg";
String[] arr = str.split(",");//分割字符串得到数组
List list = java.util.Arrays.asList(arr);//字符数组转list
参考技术D 如果是有分隔符的那种例如"a,b,c";就直接分割就行了.
String string = "a,b,c";
String [] stringArr= string.split(","); //注意分隔符是需要转译滴...
如果是"abc"这种字符串,就直接
String string = "abc" ;
char [] stringArr = string.toCharArray(); //注意返回值是char数组
如果要返回byte数组就直接使用getBytes方法就ok了~~
String string = "abc" ;
byte [] stringArr = string.getBytes();本回答被提问者采纳

以上是关于利用JAVA怎样把String转换成base64-CSDN论坛的主要内容,如果未能解决你的问题,请参考以下文章

java解析xml文件,会把节点属性中的换行转换成空格,怎样才能避免此类转换,即保留换行

java怎么把字符串进行md5加密

java怎么把普通字符串转换为base64字符串

如何将音频文件转为base64 编码

js中怎么把一个转换成base64位的文件再转化为文件

java将base64转换成图片并保存在指定路径下ImageIO.write(bi1,"png",w2)提示image==null