摘要:
此验证是不可逆转的 public class Passwor { private final static String[] hexDigital = { "0", "1", "2", "3", "4", "5", "6", "7", "8", &q 阅读全文
摘要:
首先看看身份号码是如何产生的 : 公民身份证号码是特征组合码,由17位数字本体码和一位校验码组成,排列顺序从左到右依次为 6位数字地址码 ,8位数字出生日期码 3位数字顺序码和1位数字校验码 其中顺序码表示的是同一地域范围内对同年同月同日出生的编订的顺序号 顺序码为奇数的分给男性 偶数的分给女性 校 阅读全文
摘要:
public class UsingString { public static void testFindStr(String str) { System.out.println("is 的位置"+str.indexOf("is"));//返回第一次出现的位置若找不到返回负数 System.out 阅读全文
摘要:
class MyCompare implements Comparator//自定义比较方式 要实现Conparator的 compare 方法 { public int compare(Object o1,Object o2)//要比较的类型,这里要是(上帝类) { // int a=((Inte 阅读全文
摘要:
public class UnrepeatRandomNumber { private int max; private int min; public UnrepeatRandomNumber() { this.max=10; this.min=0; } public UnrepeatRandom 阅读全文
摘要:
public class TestList { public static void init(List list) { if(list!=null) { list.add("aaa"); list.add("bbb"); list.add("ccc"); list.add("eee"); list 阅读全文
摘要:
public class UsingArray { public static void output(int[]Array) { if(Array!=null) { for(int i=0;i<Array.length;i++) System.out.print(Array[i]+" "); Sy 阅读全文
摘要:
Random r1=new Random();//空参数 System.out.println("int :"+r1.nextInt()); System.out.println("Long :"+r1.nextLong()); System.out.println("float :"+r1.nex 阅读全文
摘要:
DecimalFormat dFormat=new DecimalFormat(); double data =12345.67890; System.out.println("格式化之前的数字: "+data); String pattern="0.0";//如果该位存在字符则显示字符 如果不存在 阅读全文