自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 收藏
  • 关注

原创 计算从网络上请求图片的大小(宽高)

通常在开发Android显示网络图片时,通常会遇到因手机屏幕大小的不同,显示图片变形的问题。所以我们在显示图片时通过获取图片的大小,再计算出控件应该显示的大小,这样图片显示不会出现拉伸的问题。以下就是怎样获取网络图片大小的方法,希望能帮助大家! // 定义一个网页图片的路径String url = ”http://www.kksdapp.com/data/upload/552730...

2016-05-14 15:33:28 699

MD5 加密字符串

/*** MD5 加密* @param tastr* @return 字符串*/public static String getMD5(String tastr) {    byte[] source = tastr.getBytes();    String s = null;    char hexDigits[] = { // 用来将字节转换成 16 进制...

2015-05-20 14:37:50 161

原创 判断时间是否为今日

/*** 判断时间是否为今日* @param sdate* @return boolean*/public static boolean isToday(String time){ boolean bool = false; Date date = ToDateTime(time, 1);// 将时间格式化 Date today = new Date(); if...

2015-05-06 14:51:45 226

原创 生成随机串(包含 字母+数字)

/** * 生成随机串(包含 字母+数字) * @param pwd_len // 随机数的长度 * @return 字符串 */public static String genRandomNum(int pwd_len) { final int maxNum = 50; int i; int count = 0; char[] str = { 'a', '...

2015-05-05 14:20:12 1123

原创 生成随机数纯数字

/** * 生成随机数纯数字 * @param length // 随机数的长度 * @return */public static String getRandom(int length) { Random random = new Random(); String rr = ""; Set set = new HashSet(); while (set.s...

2015-05-05 14:20:03 529

原创 字符串去回车去空格

/** * 字符串去回车去空格 * @param str * @return */public static String replaceBlank(String str) { String dest = ""; if (str != null) { Pattern p = Pattern.compile("\\s*|\t|\r|\n"); Matcher...

2015-05-05 14:19:55 444

原创 检测是否是手机号

/** * 检测是否是手机号 * @param mobileNum * @return */public static boolean isMobileNum(String mobileNum) { Pattern pattern = Pattern.compile("^(0|86|17951)?((13[0-9])|(145)|(147)|(170)|(17[6-8])|...

2015-05-05 14:19:46 300

原创 检测是否是Email

/** 检测是否是Email **/public static boolean isEmail(String email) { Pattern pattern = Pattern.compile("^(\\w)+(\\.\\w+)*@(\\w)+((\\.\\w{2,3}){1,3})$"); Matcher matcher = pattern.matcher(email); re...

2015-05-05 14:18:14 295

原创 检查是否固话

/** * 检查是否固话 * @param phoneNum * @return */public static boolean isPhoneNum(String phoneNum) { Pattern pattern = Pattern.compile("0\\d{2,3}-\\d{7,8}"); Matcher matcher = pattern.matcher(...

2015-05-04 13:57:37 131

原创 判断字符串中是否包含数字

/** 判断字符串中是否包含数字 **/public static boolean isContainsNum(String input) { int len = input.length(); for (int i = 0; i < len; i++) { if (Character.isDigit(input.charAt(i))) { return true; ...

2015-05-04 13:57:19 2104

原创 判断字符串中是否包含字母

/** 判断字符串中是否包含字母 **/public static boolean isContainsLetter(String input){ if(!StringUtil.isNull(input)){ Matcher matcher = Pattern.compile(".*[a-zA-Z]+.*").matcher(input); return matcher.ma...

2015-05-04 13:57:00 4744

原创 格式化价格

/** 格式化价格**/public static String formatPrice(Double price){ String result = ""; try { DecimalFormat decimalFormat = new DecimalFormat("0.00"); result = decimalFormat.format(price); } c...

2015-05-04 13:56:27 214

原创 加载网络图片

       Android中最常用的加载图片的Demo,本文是自己在开发过程中总结的一篇文章。主要功能就是将网络的图片显示到手机上,并将第一次加载下来的图片保存到本地,第二次访问时如果本地还存在就直接读取本地的图片。用法很简单,只需将util包下的loadImage包中的所有文件和ImageTools文件拷贝到你的项目中。在Activity中给控件赋值时,直接引用String image...

2015-05-04 13:56:04 118

原创 计算两个时间之间的间隔天数 time2大时间, time1小时间

/** * 计算两个时间之间的间隔天数 time2大时间, time1小时间 * @param time2 * @param time1 * @return */public static int CalculateIntervalDays(String time2, String time1){ int IntervalDays = 0; Date date2 =...

2015-04-30 09:36:53 570

原创 判断当前时间是上午还是下午

/** * 判断当前时间是上午还是下午 * @return */public static String newDateIsAMOrPM(){ String info = null; String time = ToStringTime(4, new Date()); String hour = time.substring(0, 2); String minute...

2015-04-30 09:36:14 5340

原创 判断当前时间是否在两个时间之内

/** * 判断当前时间是否在两个时间之内 * @param startTime * @param endTime * @return */public static boolean isTimeInNow(String startTime, String endTime){ Date startDate = ToDateTime(startTime, 1); Da...

2015-04-30 09:35:40 1385

原创 将String类型转化为Date时间格式

/** * 将String类型转化为Date时间格式 * @param str * @param id * @return */public static Date ToDateTime(String str, int id) { SimpleDateFormat format = null; switch (id) { case 1: format = ...

2015-04-30 09:34:56 1061

原创 将Date类型装换为String类型的时间格式

/** * 将Date类型装换为String类型的时间格式 * @param id // 转换格式的ID * @param date // 时间参数 * @return */public static String ToStringTime(int id, Date date) { String resultTime = null; Long time = Sy...

2015-04-30 09:32:59 290

原创 Android使用百度推送实现即时通讯的功能

在发表文章之前先给大家吐槽两句: 我现在做Android已经有1年多的时间了,本篇文章是我发表的第一篇博客文章。此时心情难以形容,感觉给大家分享一些自己在开发过程中的经验感觉很高兴。 下面开始说重点。本篇分享给大家的是我在使用百度及时通讯实现聊天功能时的一些总结。希望能够给大家带来帮助!我就不在文章中写怎样实现功能了,都在下载包中。如果大家看过之后感觉有什么可以改进的可以回...

2014-10-16 18:28:08 197

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除