-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoTool.go
129 lines (115 loc) · 2.46 KB
/
goTool.go
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
package goTool
import (
"encoding/base64"
"encoding/json"
"fmt"
"strconv"
)
type GoTool struct {
}
/**
byte数组转base64字符串
*/
func (goTool *GoTool) ByteToBase64(bt []byte) string {
return base64.StdEncoding.EncodeToString(bt)
}
/**
base64转byte数组
*/
func (goTool *GoTool) Base64ToByte(baseStr string) []byte {
res, _ := base64.StdEncoding.DecodeString(baseStr)
return res
}
/**
字符串转base64字符串
*/
func (goTool *GoTool) StrToBase64(str string) string {
return goTool.ByteToBase64([]byte(str))
}
/**
base64转字符串
*/
func (goTool *GoTool) Base64ToStr(baseStr string) string {
return string(goTool.Base64ToByte(baseStr))
}
func (goTool *GoTool) JsonToMap(jsonStr string) map[string]interface{} {
var mapRe map[string]interface{}
err := json.Unmarshal([]byte(jsonStr), &mapRe)
if err != nil {
mapRe["code"] = -1
mapRe["message"] = err.Error()
}
return mapRe
}
func (goTool *GoTool) JsonToMap1(jsonStr string) map[string]string {
var mapRe map[string]string
err := json.Unmarshal([]byte(jsonStr), &mapRe)
if err != nil {
mapRe["code"] = "-1"
mapRe["message"] = err.Error()
}
return mapRe
}
func (goTool *GoTool) StrToJson() {
}
func (goTool *GoTool) Strval(value interface{}) string {
var key string
if value == nil {
return key
}
switch value.(type) {
case float64:
ft := value.(float64)
key = strconv.FormatFloat(ft, 'f', -1, 64)
case float32:
ft := value.(float32)
key = strconv.FormatFloat(float64(ft), 'f', -1, 64)
case int:
it := value.(int)
key = strconv.Itoa(it)
case uint:
it := value.(uint)
key = strconv.Itoa(int(it))
case int8:
it := value.(int8)
key = strconv.Itoa(int(it))
case uint8:
it := value.(uint8)
key = strconv.Itoa(int(it))
case int16:
it := value.(int16)
key = strconv.Itoa(int(it))
case uint16:
it := value.(uint16)
key = strconv.Itoa(int(it))
case int32:
it := value.(int32)
key = strconv.Itoa(int(it))
case uint32:
it := value.(uint32)
key = strconv.Itoa(int(it))
case int64:
it := value.(int64)
key = strconv.FormatInt(it, 10)
case uint64:
it := value.(uint64)
key = strconv.FormatUint(it, 10)
case string:
key = value.(string)
case []byte:
key = string(value.([]byte))
default:
newValue, _ := json.Marshal(value)
key = string(newValue)
}
return key
}
func (goTool *GoTool) Intval(value interface{}) int {
switch value.(type) {
case float64:
ft := value.(float64)
i, _ := strconv.Atoi(fmt.Sprintf("%1.0f", ft))
return i
}
return 0
}