StringUtils 开发中常用的字符串格式

import java.io.UnsupportedEncodingException;
002 import java.security.MessageDigest;
003 import java.security.NoSuchAlgorithmException;
004 import java.text.ParseException;
005 import java.text.SimpleDateFormat;
006 import java.util.Date;
007 import java.util.regex.Pattern;
008  
009 import android.app.Activity;
010 import android.content.Context;
011 import android.content.pm.ApplicationInfo;
012 import android.content.pm.PackageManager;
013 import android.content.pm.PackageManager.NameNotFoundException;
014 import android.os.Bundle;
015 import android.telephony.TelephonyManager;
016  
017 /**
018  * 字符串操作工具包
019  */
020 public class StringUtils {
021     private final static Pattern emailer = Pattern
022             .compile("\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*");
023     private final static Pattern phone = Pattern
024             .compile("^((13[0-9])|(15[^4,\\D])|(18[0,5-9]))\\d{8}$");
025  
026     private final static ThreadLocal<SimpleDateFormat> dateFormater = new ThreadLocal<SimpleDateFormat>() {
027         @Override
028         protected SimpleDateFormat initialValue() {
029             return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
030         }
031     };
032  
033     private final static ThreadLocal<SimpleDateFormat> dateFormater2 = new ThreadLocal<SimpleDateFormat>() {
034         @Override
035         protected SimpleDateFormat initialValue() {
036             return new SimpleDateFormat("yyyy-MM-dd");
037         }
038     };
039  
040     /**
041      * 返回当前系统时间
042      */
043     public static String getDataTime(String format) {
044         SimpleDateFormat df = new SimpleDateFormat(format);
045         return df.format(new Date());
046     }
047  
048     /**
049      * 返回当前系统时间
050      */
051     public static String getDataTime() {
052         return getDataTime("HH:mm");
053     }
054  
055     /**
056      * 毫秒值转换为mm:ss
057      
058      * @author kymjs
059      * @param ms
060      */
061     public static String timeFormat(int ms) {
062         StringBuilder time = new StringBuilder();
063         time.delete(0, time.length());
064         ms /= 1000;
065         int s = ms % 60;
066         int min = ms / 60;
067         if (min < 10) {
068             time.append(0);
069         }
070         time.append(min).append(":");
071         if (s < 10) {
072             time.append(0);
073         }
074         time.append(s);
075         return time.toString();
076     }
077  
078     /**
079      * 将字符串转位日期类型
080      
081      * @return
082      */
083     public static Date toDate(String sdate) {
084         try {
085             return dateFormater.get().parse(sdate);
086         catch (ParseException e) {
087             return null;
088         }
089     }
090  
091     /**
092      * 判断给定字符串时间是否为今日
093      
094      * @param sdate
095      * @return boolean
096      */
097     public static boolean isToday(String sdate) {
098         boolean b = false;
099         Date time = toDate(sdate);
100         Date today = new Date();
101         if (time != null) {
102             String nowDate = dateFormater2.get().format(today);
103             String timeDate = dateFormater2.get().format(time);
104             if (nowDate.equals(timeDate)) {
105                 b = true;
106             }
107         }
108         return b;
109     }
110  
111     /**
112      * 判断给定字符串是否空白串 空白串是指由空格、制表符、回车符、换行符组成的字符串 若输入字符串为null或空字符串,返回true
113      */
114     public static boolean isEmpty(String input) {
115         if (input == null || "".equals(input))
116             return true;
117  
118         for (int i = 0; i < input.length(); i++) {
119             char c = input.charAt(i);
120             if (c != ' ' && c != '\t' && c != '\r' && c != '\n') {
121                 return false;
122             }
123         }
124         return true;
125     }
126  
127     /**
128      * 判断是不是一个合法的电子邮件地址
129      */
130     public static boolean isEmail(String email) {
131         if (email == null || email.trim().length() == 0)
132             return false;
133         return emailer.matcher(email).matches();
134     }
135  
136     /**
137      * 判断是不是一个合法的手机号码
138      */
139     public static boolean isPhone(String phoneNum) {
140         if (phoneNum == null || phoneNum.trim().length() == 0)
141             return false;
142         return phone.matcher(phoneNum).matches();
143     }
144  
145     /**
146      * 字符串转整数
147      
148      * @param str
149      * @param defValue
150      * @return
151      */
152     public static int toInt(String str, int defValue) {
153         try {
154             return Integer.parseInt(str);
155         catch (Exception e) {
156         }
157         return defValue;
158     }
159  
160     /**
161      * 对象转整
162      
163      * @param obj
164      * @return 转换异常返回 0
165      */
166     public static int toInt(Object obj) {
167         if (obj == null)
168             return 0;
169         return toInt(obj.toString(), 0);
170     }
171  
172     /**
173      * String转long
174      
175      * @param obj
176      * @return 转换异常返回 0
177      */
178     public static long toLong(String obj) {
179         try {
180             return Long.parseLong(obj);
181         catch (Exception e) {
182         }
183         return 0;
184     }
185  
186     /**
187      * String转double
188      
189      * @param obj
190      * @return 转换异常返回 0
191      

你可能感兴趣的:(java,android)