WMSUtils.java
6.08 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
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package com.huaheng.wms.util;
import android.app.Activity;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.view.View;
import android.widget.EditText;
import android.widget.Toast;
import com.huaheng.wms.MainActivity;
import com.huaheng.wms.WMSApplication;
import com.huaheng.wms.WMSLog;
import com.huaheng.wms.views.LineLayout;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.security.MessageDigest;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class WMSUtils {
private static boolean isShow = true;
private String regex = "^[a-zA-Z]";
/**
* 短时间显示Toast
*
* @param message
*/
public static void showShort(String message)
{
if (isShow)
Toast.makeText(WMSApplication.getContext(), message, Toast.LENGTH_SHORT).show();
}
/**
* 长时间显示Toast
*
* @param message
*/
public static void showLong(String message)
{
if (isShow)
Toast.makeText(WMSApplication.getContext(), message, Toast.LENGTH_LONG).show();
}
public static void requestFocus(final View view) {
view.postDelayed(new Runnable() {
@Override
public void run() {
view.requestFocus();
}
}, 300);
}
public static void startActivity(Context context, Class<?> cls) {
Intent intent = new Intent();
intent.setClass(context, cls);
context.startActivity(intent);
}
public static String getVersionName() {
Context context = WMSApplication.getContext();
String localVersionName = "";
try {
PackageInfo packageInfo = context.getApplicationContext()
.getPackageManager()
.getPackageInfo(context.getPackageName(), 0);
localVersionName = packageInfo.versionName;
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
return localVersionName;
}
public static int getVersionCode() {
Context context = WMSApplication.getContext();
int localVersion = 0;
try {
PackageInfo packageInfo = context.getApplicationContext()
.getPackageManager()
.getPackageInfo(context.getPackageName(), 0);
localVersion = packageInfo.versionCode;
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
return localVersion;
}
public static String getPackageName() {
Context context = WMSApplication.getContext();
String pkgName = null;
try {
PackageInfo packageInfo = context.getApplicationContext()
.getPackageManager()
.getPackageInfo(context.getPackageName(), 0);
pkgName = packageInfo.packageName;
} catch (PackageManager.NameNotFoundException e) {
e.printStackTrace();
}
return pkgName;
}
public static void saveData(String key, String data) {
Context context = WMSApplication.getContext();
SharedPreferences sp = context.getSharedPreferences("wms", Activity.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.putString(key, data);
editor.commit();
}
public static String getData(String key) {
Context context = WMSApplication.getContext();
SharedPreferences sp = context.getSharedPreferences("wms", Activity.MODE_PRIVATE);
String data = sp.getString(key, null);
return data;
}
public static void resetEdit(EditText editText) {
editText.setText("");
WMSUtils.requestFocus(editText);
}
public static boolean isNotEmpty(String str) {
if(str != null && str.length() > 0) {
return true;
}
return false;
}
public static boolean isNotEmptyList(List<?> list) {
if(list != null && list.size() > 0) {
return true;
}
return false;
}
public static boolean containLetter(String text) {
boolean result = false;
Pattern p = Pattern.compile("[a-zA-Z]");
Matcher m = p.matcher(text);
if(m.matches()){
result = true;
}
WMSLog.d("containLetter text:" + result);
return result;
}
public static LineLayout newContent(Context context, String title, String content) {
LineLayout lineLayout = new LineLayout(context);
lineLayout.setLineName(title);
lineLayout.setLineContent(content);
return lineLayout;
}
public static View newDevider(Context context) {
View view = new View(context);
view.setMinimumHeight(1);
view.setMinimumWidth(-1);
return view;
}
// 计算文件的 MD5 值
public static String md5(File file) {
if (file == null || !file.isFile() || !file.exists()) {
return "";
}
FileInputStream in = null;
String result = "";
byte buffer[] = new byte[8192];
int len;
try {
MessageDigest md5 = MessageDigest.getInstance("MD5");
in = new FileInputStream(file);
while ((len = in.read(buffer)) != -1) {
md5.update(buffer, 0, len);
}
byte[] bytes = md5.digest();
for (byte b : bytes) {
String temp = Integer.toHexString(b & 0xff);
if (temp.length() == 1) {
temp = "0" + temp;
}
result += temp;
}
} catch (Exception e) {
e.printStackTrace();
} finally {
if(null!=in){
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return result;
}
}