
Java SE
echonul
这个作者很懒,什么都没留下…
展开
-
双色球概率分析
/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package test;import java.math.BigInteger;import java.math.BigDecimal;/** * 2011-3-19...2011-03-19 18:40:38 · 685 阅读 · 0 评论 -
Java文件操作大全
1.创建文件夹 File myFolderPath = new File(%%1); try { if (!myFolderPath.exists()) { myFolderPath.mkdir(); } } catch (Exception e) { System.out.println("新建目录操作出错"); e.printSta...原创 2011-03-20 10:58:53 · 86 阅读 · 0 评论