WMSUtils.java
16.2 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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
package com.lijinji.part.util;
import android.Manifest;
import android.app.Activity;
import android.app.Instrumentation;
import android.content.Context;
import android.content.Intent;
import android.content.SharedPreferences;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.os.PowerManager;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import android.support.v4.app.ActivityCompat;
import android.support.v4.content.ContextCompat;
import com.lijinji.part.WMSApplication;
import com.lijinji.part.bean.MenuOperationBean;
import com.lijinji.part.bean.ProductBean;
import com.lijinji.part.bean.ProductTransBean;
import org.json.JSONObject;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.security.MessageDigest;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
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 String getData(String key, String value) {
Context context = WMSApplication.getContext();
SharedPreferences sp = context.getSharedPreferences("wms", Activity.MODE_PRIVATE);
String data = sp.getString(key, value);
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;
}
// 计算文件的 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;
}
public static void requestAppPermission(Activity activity) {
requestPermission(activity, Manifest.permission.CAMERA);
}
public static void requestPermission(Activity activity, String permission) {
//判断是否已经赋予权限
if (ContextCompat.checkSelfPermission(activity, permission)
!= PackageManager.PERMISSION_GRANTED) {
//如果应用之前请求过此权限但用户拒绝了请求,此方法将返回 true。
if (ActivityCompat.shouldShowRequestPermissionRationale(activity, permission)) {//这里可以写个对话框之类的项向用户解释为什么要申请权限,并在对话框的确认键后续再次申请权限
WMSLog.d("requestPermission!!");
} else {
//申请权限,字符串数组内是一个或多个要申请的权限,1是申请权限结果的返回参数,在onRequestPermissionsResult可以得知申请结果
WMSLog.d("requestPermission@@");
ActivityCompat.requestPermissions(activity,
new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.CAMERA}, 1);
}
}
}
/*
** 判断JsonData里是否有该key,预防没有key直接造成奔溃
*/
public static String getJsonData(JSONObject object, String key) {
String result = null;
try {
result = object.has(key) ? object.getString(key) : null;
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
public static void onKeyEvent(final int keyCode) {
new Thread() {
public void run() {
try {
Instrumentation inst = new Instrumentation();
inst.sendKeyDownUpSync(keyCode);
} catch (Exception e) {
e.printStackTrace();
}
}
}.start();
}
public static void hideSoftInput(Context context, View view) {
InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
public static void acquireWakeLock(Context context) {
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "WMS");
wakeLock.acquire();
}
public static void releaseWakeLock(Context context) {
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE);
PowerManager.WakeLock wakeLock = pm.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "WMS");
wakeLock.release();
}
public static DatesTime freshTime() {
Calendar calendar = Calendar.getInstance();
int year = calendar.get(Calendar.YEAR);
int month = calendar.get(Calendar.MONTH) + 1;
int day = calendar.get(Calendar.DAY_OF_MONTH);
int hour = calendar.get(Calendar.HOUR_OF_DAY);
int minute = calendar.get(Calendar.MINUTE);
int second = calendar.get(Calendar.SECOND);
DatesTime dateTime = new DatesTime(year, month, day, hour, minute, second);
WMSLog.d("freshTime month:" + month + " day:" + day + " hour:" + hour);
return dateTime;
}
public static DateTime freshTimeProduct() {
Calendar calendar = Calendar.getInstance();
int year = calendar.get(Calendar.YEAR);
int month = calendar.get(Calendar.MONTH) + 1;
int day = calendar.get(Calendar.DAY_OF_MONTH);
int hour = calendar.get(Calendar.HOUR_OF_DAY);
int minute = calendar.get(Calendar.MINUTE);
int second = calendar.get(Calendar.SECOND);
DateTime dateTime = new DateTime(year, month, day, hour, minute, second);
return dateTime;
}
public static String freshTime(String time) {
if(time == null) {
return "";
}
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
Date date = null;
try {
date = formatter.parse(time);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String sDate=sdf.format(date);
return sDate;
} catch (ParseException e) {
e.printStackTrace();
}
return null;
}
public static class DatesTime {
int year, month, day, hour, minute, second;
public DatesTime(int year, int month, int day, int hour, int minute, int second) {
this.year = year;
this.month = month;
this.day = day;
this.hour = hour;
this.minute = minute;
this.second = second;
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public int getMonth() {
return month;
}
public void setMonth(int month) {
this.month = month;
}
public int getDay() {
return day;
}
public void setDay(int day) {
this.day = day;
}
public int getHour() {
return hour;
}
public void setHour(int hour) {
this.hour = hour;
}
public int getMinute() {
return minute;
}
public void setMinute(int minute) {
this.minute = minute;
}
public int getSecond() {
return second;
}
public void setSecond(int second) {
this.second = second;
}
}
public static int getMonthOfDay(int year,int month) {
int day = 0;
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0) {
day = 29;
} else {
day = 28;
}
switch (month) {
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
return 31;
case 4:
case 6:
case 9:
case 11:
return 30;
case 2:
return day;
}
return 0;
}
public static String freshTimeDate(String time) {
if(time == null) {
return null;
}
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
Date date = null;
try {
date = formatter.parse(time);
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String sDate=sdf.format(date);
return sDate;
} catch (ParseException e) {
e.printStackTrace();
}
return null;
}
public static void checkPermission(List<MenuOperationBean> menuOperations, List<View> views) {
for (View view : views) {
innerCheckPermission(menuOperations, view);
}
}
public static void innerCheckPermission(List<MenuOperationBean> menuOperations, View view) {
if (view instanceof Button) {
Button temp = (Button) view;
if(temp.getTag() instanceof String) {
String tag = (String)temp.getTag();
boolean contain = false;
for(MenuOperationBean menuOperationBean : menuOperations) {
if(menuOperationBean.getPerms().equals(tag)) {
contain = true;
view.setVisibility(View.VISIBLE);
}
}
if(!contain) {
view.setVisibility(View.GONE);
}
}
}
}
public static String getOrderTypeName(int type) {
switch (type) {
case 0:
return "灌装工单";
case 1:
return "包装工单";
case 2:
return "灌装包装工单";
case 3:
return "无效分类工单";
default:
break;
}
return null;
}
public static Date getDistanceDate(int distanceDay) {
SimpleDateFormat dft = new SimpleDateFormat("yyyy-MM-dd");
Date beginDate = new Date();
Calendar date = Calendar.getInstance();
date.setTime(beginDate);
date.set(Calendar.DATE, date.get(Calendar.DATE) + distanceDay);
Date endDate = null;
try {
endDate = dft.parse(dft.format(date.getTime()));
} catch (ParseException e) {
e.printStackTrace();
}
return endDate;
}
public static class DateTime {
int year, month, day, hour, minute, second;
public DateTime(int year, int month, int day, int hour, int minute, int second) {
this.year = year;
this.month = month;
this.day = day;
this.hour = hour;
this.minute = minute;
this.second = second;
}
public int getYear() {
return year;
}
public void setYear(int year) {
this.year = year;
}
public int getMonth() {
return month;
}
public void setMonth(int month) {
this.month = month;
}
public int getDay() {
return day;
}
public void setDay(int day) {
this.day = day;
}
public int getHour() {
return hour;
}
public void setHour(int hour) {
this.hour = hour;
}
public int getMinute() {
return minute;
}
public void setMinute(int minute) {
this.minute = minute;
}
public int getSecond() {
return second;
}
public void setSecond(int second) {
this.second = second;
}
}
}