- Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathBase64Util.java
More file actions
Latest commit
68 lines (58 loc) · 1.75 KB
/
Copy pathBase64Util.java
File metadata and controls
68 lines (58 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
packagecom.realmo.utils;
importandroid.util.Base64;
importcom.google.gson.Gson;
importcom.google.gson.GsonBuilder;
importjava.io.UnsupportedEncodingException;
/**
* Base64编码(加密、解密)
*/
publicclassBase64Util {
/**
* 加密
*/
publicstaticStringencode(Stringstr){
try {
returnBase64.encodeToString(str.getBytes("utf-8"), Base64.DEFAULT);
} catch (UnsupportedEncodingExceptione) {
e.printStackTrace();
}
returnnewString(Base64.encode(str.getBytes(), Base64.DEFAULT));
}
publicstaticStringencodeByte(byte[] bytes){
returnBase64.encodeToString(bytes, Base64.DEFAULT);
}
/**
* 对象转JSON后加密
*/
publicstaticStringencodeObject(Objectobject){
Gsongson=newGsonBuilder().create();
Stringstr = gson.toJson(object);
try {
returnBase64.encodeToString(str.getBytes("utf-8"), Base64.DEFAULT);
} catch (UnsupportedEncodingExceptione) {
e.printStackTrace();
}
returnnewString(Base64.encode(str.getBytes(), Base64.DEFAULT));
}
/**
* 解密
*/
publicstaticStringdecode(StringstrBase64){
byte[] bytes = Base64.decode(strBase64, Base64.DEFAULT);
try {
returnnewString(bytes, "utf-8");
} catch (UnsupportedEncodingExceptione) {
e.printStackTrace();
}
returnnewString(bytes);
}
/**
* 解密返回byte[]
*/
publicstaticbyte[] decodeToBytes(StringstrBase64){
returnBase64.decode(strBase64, Base64.DEFAULT);
}
publicstaticbyte[] decodeToBytes(byte[] strBase64){
returnBase64.decode(strBase64, Base64.DEFAULT);
}
}