java杂烩
chunlongyuan
这个作者很懒,什么都没留下…
展开
-
java 四舍五入
/* 四舍五入的method */ private String format(double num) { NumberFormat formatter = new DecimalFormat("0.00"); String s=formatter.format(num); return s; }原创 2012-07-16 12:10:35 · 485 阅读 · 0 评论 -
Java 获取汉字首字母
本文属于http://java.chinaitlab.com/base/803353.html原创!!!public class PinYin2Abbreviation { // 简体中文的编码范围从B0A1(45217)一直到F7FE(63486) private static int BEGIN = 45217; private static int END = 63486; //转载 2013-01-17 16:41:23 · 23464 阅读 · 5 评论 -
java通过生日得到星座
private final static int[] dayArr = new int[] { 20, 19, 21, 20, 21, 22, 23, 23, 23, 24, 23, 22 }; private final static String[] constellationArr = new String[] { "摩羯座", "水瓶座", "双鱼座", "白羊座", "金牛座", "双原创 2013-02-02 13:44:01 · 8603 阅读 · 0 评论 -
Java 加密解密
来自网络,稍作修改,仅做记录import java.security.Key;import javax.crypto.BadPaddingException;import javax.crypto.Cipher;import javax.crypto.IllegalBlockSizeException;/** * 加密解密字符串和字节码 * * @version 2013翻译 2013-02-27 15:00:29 · 1657 阅读 · 0 评论 -
获取字符串长度
/** 中文为2其余为1,返回字符串的长度 */ public static int getStrLength(String str) { int strLen = 0; String chinese = "[\u0391-\uFFE5]"; for (int i = 0; i < str.length(); i++) { String temp = str.substring原创 2013-03-25 10:07:45 · 1768 阅读 · 0 评论 -
ListView流畅
注意该方法只是减小阻尼 治标不治本if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){ listView.setFriction(0.010f);}翻译 2015-06-06 11:38:58 · 682 阅读 · 0 评论