package com.gzcivil.utils;

 import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Calendar;
import java.util.Date;
import java.util.Locale;
import java.util.StringTokenizer;
import java.util.regex.Matcher;
import java.util.regex.Pattern; /**
* 字符串工具
*
* @author LiJinlun
* @time 2015-12-5
*/
public class StringUtils { private static StringUtils instance; private StringUtils() {
super();
} public static String getDateTimeToString(Calendar cal, String format) {
return getDateTimeToString(cal.getTimeInMillis(), format);
} public static String getDateTimeToString(long longTime, String format) {
SimpleDateFormat sdf = new SimpleDateFormat(format, Locale.getDefault());
Date date = new Date(longTime);
return sdf.format(date);
} public static synchronized StringUtils getInstance() {
if (instance == null)
instance = new StringUtils();
return instance;
} /** 将一个字符串从第一位开始截取到有数字出现的地方 */
public static String clearNumberString(String str) {
int minIndex = Integer.MAX_VALUE;
int[] index = new int[10];
for (int i = 0; i < 10; i++) {
index[i] = str.indexOf(String.valueOf(i));
if (index[i] != -1 && index[i] < minIndex) {
minIndex = index[i];
}
}
if (minIndex < Integer.MAX_VALUE) {
str = str.substring(0, minIndex);
}
return str;
} /**
* 判断字符串是否为空
*/
public static boolean isEmpty(String str) {
return null == str || str.trim().equals("");
} /**
* 描述:手机号格式验证.
*
* @param str
* 指定的手机号码字符串
* @return 是否为手机号码格式:是为true,否则false
*/
public static Boolean isMobilePhone(String str) {
Boolean isMobileNo = false;
try {
Pattern p = Pattern.compile("^((13[0-9])|(14[0-9])|(15[0-9])|(16[0-9])|(17[0-9])|(18[0-9])|(19[0-9]))\\d{8}$");
Matcher m = p.matcher(str);
isMobileNo = m.matches();
} catch (Exception e) {
e.printStackTrace();
}
return isMobileNo;
} /**
* 获取字串字节长度
*
* @param str
* @return
*/
public static int getLength(String str) {
return str.replaceAll("[^\\x00-\\xff]", "**").trim().length();
} /** 返回double数据d小数点后面2位有效数字 */
public static double getDouble(double d) {
return new BigDecimal(d).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
} /** 从double型返回String型,精确到小数点后2位 */
public static String getStringByDouble(double d) {
String str = String.valueOf(new BigDecimal(d).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue());
try {
int index = str.indexOf('.');
if (index != -1) {
String tmpStr = str.substring(index + 1);
if ("0".equals(tmpStr)) {
str = str.substring(0, index);
}
}
} catch (Exception e) {
e.printStackTrace();
}
return str;
} public static String getCorrectDistance(int distance) {
String result = "";
if (distance < 20) {
result = "附近";
} else if (distance < 1000) {
result = distance + "m";
} else {
result = String.format("%.1f", distance / 1000f) + "km";
}
return result;
} /**
* 将秒数转换成文字描述
*
* @param tm单位秒
*/
public static String secondsToString(int tm) {
if (tm <= 0)
return "00:00:00";
long hour = tm / 3600;
tm = tm % 3600;
long min = tm / 60;
tm = tm % 60; String result = "";
if (hour < 10) {
result = "0" + hour + ":";
} else {
result = String.valueOf(hour) + ":";
} if (min < 10) {
result += "0" + min + ":";
} else {
result += min + ":";
} if (tm < 10) {
result += "0" + tm;
} else {
result += String.valueOf(tm);
}
return result;
} /**
* 检测是否JSON字串
*
* @param source
* @return
*/
public static boolean isJson(String source) {
String tmp = null == source ? "" : source.trim();
if ("".equals(tmp) || tmp.length() < 1)
return false;
else if (tmp.startsWith("{") && tmp.endsWith("}"))
return true;
else if (tmp.startsWith("[") && tmp.endsWith("]"))
return true;
else
return false;
} public static String str2int(String source) {
String result = "";
LogUtils.i("ls", "result" + result);
for (int i = 0; i < source.length(); i++) {
if (source.charAt(i) >= '0' && source.charAt(i) <= '9')
result += source.charAt(i); }
return result;
} /**
* MD5编码
*
* @param source
* @return
*/
public static String md5(byte[] source) {
char hexDigits[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f' };
try {
java.security.MessageDigest md = java.security.MessageDigest.getInstance("MD5");
md.update(source);
byte tmp[] = md.digest();
char str[] = new char[16 * 2];
for (int i = 0, k = 0; i < 16; i++) {
byte byte0 = tmp[i];
str[k++] = hexDigits[byte0 >>> 4 & 0xf];
str[k++] = hexDigits[byte0 & 0xf];
}
return new String(str);
} catch (Exception e) {
LogUtils.e("md5(): error=" + e.getMessage(), "StringTool");
return "";
}
} /**
* base64编码,将字节数组编码为字符串
*
* @param source
* @return String
*/
public static String base64_encode(byte[] source) {
char[] base64EncodeChars = new char[] { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '+', '/' };
try {
StringBuffer sb = new StringBuffer();
int len = source.length;
int i = 0;
int b1, b2, b3;
while (i < len) {
b1 = source[i++] & 0xff;
if (i == len) {
sb.append(base64EncodeChars[b1 >>> 2]);
sb.append(base64EncodeChars[(b1 & 0x3) << 4]);
sb.append("==");
break;
}
b2 = source[i++] & 0xff;
if (i == len) {
sb.append(base64EncodeChars[b1 >>> 2]);
sb.append(base64EncodeChars[((b1 & 0x03) << 4) | ((b2 & 0xf0) >>> 4)]);
sb.append(base64EncodeChars[(b2 & 0x0f) << 2]);
sb.append("=");
break;
}
b3 = source[i++] & 0xff;
sb.append(base64EncodeChars[b1 >>> 2]);
sb.append(base64EncodeChars[((b1 & 0x03) << 4) | ((b2 & 0xf0) >>> 4)]);
sb.append(base64EncodeChars[((b2 & 0x0f) << 2) | ((b3 & 0xc0) >>> 6)]);
sb.append(base64EncodeChars[b3 & 0x3f]);
}
return sb.toString();
} catch (Exception e) {
LogUtils.e("base64_encode(): error=" + e.getMessage(), "StringTool");
return "";
}
} /**
* base64编码,解码为字节数组
*
* @param source
* @return byte[]
*/
public static byte[] base64_decode(String source) {
byte[] base64DecodeChars = new byte[] { -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 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, -1, -1, -1, -1, -1, -1, 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, -1, -1, -1, -1, -1 };
try {
byte[] data = source.getBytes();
int len = data.length;
ByteArrayOutputStream buf = new ByteArrayOutputStream(len);
int i = 0;
int b1, b2, b3, b4;
while (i < len) {
/* b1 */
do {
b1 = base64DecodeChars[data[i++]];
} while (i < len && b1 == -1);
if (b1 == -1)
break; /* b2 */
do {
b2 = base64DecodeChars[data[i++]];
} while (i < len && b2 == -1);
if (b2 == -1)
break;
buf.write((int) ((b1 << 2) | ((b2 & 0x30) >>> 4))); /* b3 */
do {
b3 = data[i++];
if (b3 == 61)
return buf.toByteArray();
b3 = base64DecodeChars[b3];
} while (i < len && b3 == -1);
if (b3 == -1)
break;
buf.write((int) (((b2 & 0x0f) << 4) | ((b3 & 0x3c) >>> 2))); /* b4 */
do {
b4 = data[i++];
if (b4 == 61)
return buf.toByteArray();
b4 = base64DecodeChars[b4];
} while (i < len && b4 == -1);
if (b4 == -1)
break;
buf.write((int) (((b3 & 0x03) << 6) | b4));
}
return buf.toByteArray();
} catch (Exception e) {
LogUtils.i("ls", "base64_decode(): error=" + e.getMessage());
return "".getBytes();
}
} public static String join(String separator, Object[] o) {
return implode(separator, Arrays.asList(o));
} protected static <T> String implode(String separator, Iterable<T> elements) {
StringBuilder out = new StringBuilder();
boolean first = true;
for (Object s : elements) {
if (s == null)
continue;
else if (first)
first = false;
else
out.append(separator);
out.append(s);
}
return out.toString();
} public static String[] explode(String glue, String str) {
String[] outData;
try {
StringTokenizer st = new StringTokenizer(str, glue);
outData = new String[st.countTokens()];
for (int i = 0; st.hasMoreTokens();) {
outData[i++] = st.nextToken();
}
} catch (Exception e) {
outData = new String[] { str };
e.printStackTrace();
}
return outData;
} /**
* 得到字符串双字节长度
*
* @param str
* @return
*/
public static int getDoubleByteLength(String str) {
return str.replaceAll("[^\\x00-\\xff]", "xx").trim().length();
} /**
* 将流转换成字符串
*
* @param is
* @return
*/
public static String getStringByStream(InputStream is) {
StringBuffer sb = new StringBuffer();
try {
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line = null;
while ((line = br.readLine()) != null) {
sb.append(line);
}
} catch (Exception e) {
e.printStackTrace();
}
return sb.toString();
} /**
* 将流转换成字符串
*
* @param is
* @param chatset
* 字符编码
* @return
*/
public static String getStringByStream(InputStream is, String chatset) {
StringBuffer sb = new StringBuffer();
try {
byte[] bytes = new byte[1024];
int len = 0;
while ((len = is.read(bytes)) != -1) {
sb.append(new String(bytes, 0, len, chatset));
}
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
return sb.toString();
} }

android开发字符串工具类(一)的更多相关文章

  1. Android开发常用工具类

    来源于http://www.open-open.com/lib/view/open1416535785398.html 主要介绍总结的Android开发中常用的工具类,大部分同样适用于Java. 目前 ...

  2. 最全Android开发常用工具类

    主要介绍总结的Android开发中常用的工具类,大部分同样适用于Java. 目前包括  HttpUtils.DownloadManagerPro.Safe.ijiami.ShellUtils.Pack ...

  3. android 开发 常用工具类

    转载请标明出处:http://blog.csdn.net/lmj623565791/article/details/38965311,本文出自[张鸿洋的博客] 打开大家手上的项目,基本都会有一大批的辅 ...

  4. android开发Tost工具类管理(一)

    Tost工具类管理: package com.gzcivil.utils; import android.content.Context; import android.widget.Toast; / ...

  5. android 开发 在一个工具类(或者适配器class)里启动activity

    实现思路: 1.需要给工具类里传入context: 2.使用上下文mContext.startActivity启动activity 例子1: public class SafePlaceRecycle ...

  6. Android开发 Html工具类详解

    前言 在一些需求富文本显示或者编辑的开发情况下,数据都是用html的格式来保存文本信息的.而google是有提供解析html的工具类那就是Html.有了Html可以让TextView也支持富文本(其实 ...

  7. 网络请求以及网络请求下载图片的工具类 android开发java工具类

    package cc.jiusan.www.utils; import org.apache.http.HttpEntity; import org.apache.http.HttpResponse; ...

  8. Android 开发小工具之:Tools 属性 (转)

    Android 开发小工具之:Tools 属性 http://blog.chengyunfeng.com/?p=755#ixzz4apLZhfmi 今天来介绍一些 Android 开发过程中比较有用但 ...

  9. Android 开发常用工具合集

    在 Android 开发中经常使用到的小功能,用于记录开发的那些事^_^ 1. 获取 release 和 debug 版本的 SHA1 public static String getSHA1(Con ...

随机推荐

  1. ORACLE数据库不同故障下的恢复总结

    ORACLE数据库不同故障下的恢复总结1. 非归档模式下丢失或损坏的文件--1.1 数据文件--启动数据库的状态到MOUNT--恢复方法:通过之前创建的数据库完整备份,修复整个数据库,不过备份之后发生 ...

  2. hdu2095 像水题的不错题 异或运算

    异或运算的基础有点忘记了 先介绍一下..2个数异或 就是对于每一个二进制位进行位运算 具有2个特殊的性质 1.一个数异或本身恒等于0,如5^5恒等于0: 2.一个数异或0恒等于本身,如5^0恒等于5. ...

  3. application,session,cookie三者之间的区别和联系

    application:    程序全局变量对象,对每个用户每个页面都有效 session:    用户全局变量,对于该用户的所有操作过程都有效    session主要是在服务器端用,一般对客户端不 ...

  4. 005 列表以及append,extend方法

    定义一个列表: number=[,'changhao','常浩',5.2] 往这个列表里面添加单一新值(类型无限制),需要使用append方法. 例如: number.append() number. ...

  5. java基础知识——程序员面试基础

    一.面向对象的特征有哪些? 答:①.抽象:抽象是忽略一个主题中与当前目标无关的那些方面,一边更充分的注意与当前目标有关的方面.抽象并不打算了解全面问题,而是选择其中的一部分,暂时不用部分细节.抽象包括 ...

  6. MYSQL分页存储过程及事务处理--转自peace

    MYSQL的分页过程,和事务处理的一个测试过程. /* --名称:MYSQL版查询分页存储过程 by peace 2013-8-14 --输入参数:@fields -- 要查询的字段用逗号隔开 --输 ...

  7. JavaScript的异步操作

    http://sporto.github.io/blog/2012/12/09/callbacks-listeners-promises/

  8. VS2012常用快捷建(必备)

    1. 强迫智能感知:Ctrl+J:2.强迫智能感知显示参数信息:Ctrl-Shift-空格:3.格式化整个块:Ctrl+K+F4. 检查括号匹配(在左右括号间切换): Ctrl +]5. 选中从光标起 ...

  9. 使用AES加密的帮助类

    在开发中经常使用加密/解密对一些内容进行处理,比如密码在存入数据库之前先经过加密处理等等,这里就把一个加密帮助类代码贴出来,供以后查找使用. 这个帮助类主要功能是对字符串和字节数组进行加密解密处理. ...

  10. 什麼是 N-key 與按鍵衝突?原理說明、改善技術、選購注意完全解析

    不管是文書處理或遊戲中,我們都經常會使用到組合鍵,也就是多顆按鍵一起按下,執行某些特定的功能.有時候你可能會發現,明明只按下2顆鍵,再按下第3顆鍵時訊號卻沒有輸出.要是打報告到一半遇到這種狀況還好,如 ...