`
yxgyh
  • 浏览: 274396 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

java常用函数收集(一)

    博客分类:
  • JAVA
阅读更多
Java代码 复制代码
  1. /**  
  2.  * 根据传入的格式获取日期  
  3.  *   
  4.  * @param format  
  5.  *            如:YYYYMMDD || MM/dd/yyyy, hh:mm:ss  
  6.  * @return 字符串的日期  
  7.  */  
  8. public String getSysDate(String format) {   
  9.     String dateStr = "";   
  10.     try {   
  11.         Format formatter;   
  12.         Date date = new Date();   
  13.         formatter = new SimpleDateFormat(format);   
  14.         dateStr = formatter.format(date);   
  15.     } catch (Exception e) {   
  16.         System.out.println(e);   
  17.     }   
  18.     return dateStr;   
  19. }   
  20. /**  
  21.  * 根据传入的格式获取日期  
  22.  *   
  23.  * @param format  
  24.  *            如:YYYYMMDD || MM/dd/yyyy, hh:mm:ss  
  25.  * @return 字符串的日期  
  26.  */  
  27. public String getFormatDate(Date date, String format) {   
  28.     String dateStr = "";   
  29.     try {   
  30.         Format formatter;   
  31.         formatter = new SimpleDateFormat(format);   
  32.         dateStr = formatter.format(date);   
  33.     } catch (Exception e) {   
  34.         System.out.println(e);   
  35.     }   
  36.     return dateStr;   
  37. }   
  38. /**  
  39.  * 获取分割后的字符串数组信息  
  40.  *   
  41.  * @param Str  
  42.  * @param Split  
  43.  * @return 字符串数组  
  44.  */  
  45. public String[] getSplit(String Str, String Split) {   
  46.     return Str.split(Split);   
  47. }   
  48. /**  
  49.  * 把字符串转换成指定的日期格式  
  50.  *   
  51.  * @param str  
  52.  * @param format  
  53.  * @return  
  54.  */  
  55. public Date Convert(String str, String format) {   
  56.     java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat(format);   
  57.     try {   
  58.         java.util.Date d = sdf.parse(str);   
  59.         return d;   
  60.     } catch (Exception ex) {   
  61.         ex.printStackTrace();   
  62.         return null;   
  63.     }   
  64. }   
  65. /**  
  66.  * 获取月的天数  
  67.  *   
  68.  * @param year  
  69.  * @param month  
  70.  * @return  
  71.  */  
  72. public static int getdays(String year, String month) {   
  73.     int yearInt = Integer.parseInt(year);   
  74.     int monthInt = Integer.parseInt(month);   
  75.     int monthdays = 31;   
  76.     switch (monthInt) {   
  77.     case 1:   
  78.     case 3:   
  79.     case 5:   
  80.     case 7:   
  81.     case 8:   
  82.     case 10:   
  83.     case 12: {   
  84.         monthdays = 31;   
  85.         break;   
  86.     }   
  87.     case 2: {   
  88.         if (isLeapyear(yearInt)) {   
  89.             monthdays = 29;   
  90.         } else {   
  91.             monthdays = 28;   
  92.         }   
  93.         break;   
  94.     }   
  95.     case 4:   
  96.     case 6:   
  97.     case 9:   
  98.     case 11: {   
  99.         monthdays = 30;   
  100.         break;   
  101.     }   
  102.     }   
  103.     return monthdays;   
  104. }   
  105.   
  106. /**  
  107.  * 判断闰年  
  108.  *   
  109.  * @param year  
  110.  * @return  
  111.  */  
  112. public static boolean isLeapyear(int year) {   
  113.     if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {   
  114.         return true;   
  115.     } else {   
  116.         return false;   
  117.     }   
  118. }   
  119.   
  120. /**  
  121.  * 判断某天是星期几  
  122.  *   
  123.  * @param strDate  
  124.  * @return 0 表示是星期天  
  125.  */  
  126. public static int getWeekByDate(String strDate) {   
  127.     int dayOfWeek = 0;   
  128.     try {   
  129.   
  130.         SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");   
  131.         Calendar calendar = Calendar.getInstance();   
  132.         Date date = new Date();   
  133.         date = sdf.parse(strDate);   
  134.         calendar.setTime(date);   
  135.         dayOfWeek = calendar.get(Calendar.DAY_OF_WEEK);   
  136.     } catch (Exception e) {   
  137.         e.printStackTrace();   
  138.     }   
  139.     return dayOfWeek - 1;   
  140. }   
  141. /**  
  142.  * 判断字符串是不是数字  
  143.  *   
  144.  * @param str  
  145.  * @return  
  146.  */  
  147. public static boolean isNumeric(String str) {   
  148.     Pattern pattern = Pattern.compile("[0-9]*");   
  149.     Matcher isNum = pattern.matcher(str);   
  150.     if (!isNum.matches()) {   
  151.         return false;   
  152.     }   
  153.     return true;   
  154. }   
  155. /**  
  156.  * 获得距给定日期countday的字符串格式  
  157.  *   
  158.  * @param date  
  159.  * @param countday  
  160.  * @param flag  
  161.  *            为true表示日期前,为false表示日期后  
  162.  * @return YYYY-MM-DD  
  163.  */  
  164. public String getDateString(Date date, int countday, boolean flag) {   
  165.     String datestr = "";   
  166.     if (flag) {   
  167.         datestr = getFormatDate(new Date((new Date()).getTime() - countday   
  168.                 * 24 * 60 * 60 * 1000l), "yyyy-MM-dd");   
  169.     } else {   
  170.         datestr = getFormatDate(new Date((new Date()).getTime() + countday   
  171.                 * 24 * 60 * 60 * 1000l), "yyyy-MM-dd");   
  172.     }   
  173.     return datestr;   
  174. }   
  175. /***************************************************************************  
  176.  * 根据两个时间判断时间差  
  177.  * @throws ParseException   
  178.  * @throws ParseException   
  179.  **************************************************************************/  
  180. public Long getDateDifference(Date date1,Date date2) throws ParseException {   
  181. //      Date date1 = new SimpleDateFormat("yyyy-mm-dd").parse("2008-3-31");   
  182. //      Date date2 = new SimpleDateFormat("yyyy-mm-dd").parse("2008-3-30");   
  183.     // 日期相减得到相差的日期   
  184.     long day = (date1.getTime() - date2.getTime()) / (24 * 60 * 60 * 1000) > 0 ? (date1   
  185.             .getTime() - date2.getTime())   
  186.             / (24 * 60 * 60 * 1000)   
  187.             : (date2.getTime() - date1.getTime()) / (24 * 60 * 60 * 1000);   
  188.     return day;   
  189.   
  190. }   
  191. /***************************************************************************  
  192.  * 根据两个时间来判断时间的差值  
  193.  * @param days  
  194.  * @return  
  195.  */  
  196. public Long getDateDifference1(Date date1,Date date2) throws ParseException {   
  197.     // 日期相减得到相差的日期   
  198.     long day = (date1.getTime() - date2.getTime())/ (24 * 60 * 60 * 1000);   
  199.     return day;   
  200. }   
  201. /***************************************************************************  
  202.  * 返回当前时间的一个时间差时间  
  203.  * @param days  
  204.  * @return  
  205.  */  
  206. public static String Ds(int days) {   
  207.     SimpleDateFormat form = new SimpleDateFormat("yyyy-MM-dd");   
  208.     Calendar calendar = Calendar.getInstance();   
  209.     int day = calendar.get(Calendar.DAY_OF_YEAR);   
  210.     calendar.set(Calendar.DAY_OF_YEAR, day - days);   
  211.     Date cc = calendar.getTime();   
  212.     return form.format(cc);   
  213. }   
  214. /*************************************************************************  
  215.  * 获取系统当前时间  
  216.  */  
  217. public static Date getSystemDate(){   
  218.     SimpleDateFormat   sf   =   new   SimpleDateFormat("yyyy-MM-dd");      
  219.     Date   date   =   new   Date();                                                                    
  220.     try {   
  221.         return new SimpleDateFormat("yyyy-mm-dd").parse(sf.format(date));   
  222.     } catch (ParseException e) {   
  223.     }   
  224.     return null;   
  225. }   
  226.  /**  
  227.    * 判断是否为整数  
  228.    *   
  229.    * @param str 传入的字符串  
  230.    * @return 是整数返回true,否则返回false  
  231.    */  
  232.   public static boolean isInteger(String str) {   
  233.     Pattern pattern = Pattern.compile("^[-\\+]?[\\d]*$");   
  234.     return pattern.matcher(str).matches();   
  235.  }   
  236. /**  
  237.    * 判断是否为浮点数,包括double和float  
  238.    *   
  239.    * @param str 传入的字符串  
  240.    * @return 是浮点数返回true,否则返回false  
  241.    */  
  242.   public static boolean isDouble(String str) {   
  243.     Pattern pattern = Pattern.compile("^[-\\+]?[.\\d]*$");   
  244.     return pattern.matcher(str).matches();   
  245.   }   
  246. /**  
  247.    * 判断输入的字符串是否符合Email样式.  
  248.    *   
  249.    * @param str 传入的字符串  
  250.    * @return 是Email样式返回true,否则返回false  
  251.    */  
  252.   public static boolean isEmail(String str) {   
  253.     Pattern pattern = Pattern.compile("^\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*$");   
  254.     return pattern.matcher(str).matches();   
  255.   }   
  256. /**  
  257.    * 判断输入的字符串是否为纯汉字  
  258.    *   
  259.    * @param str 传入的字符窜  
  260.    * @return 如果是纯汉字返回true,否则返回false  
  261.    */  
  262.   public static boolean isChinese(String str) {   
  263.     Pattern pattern = Pattern.compile("[\u0391-\uFFE5]+$");   
  264.     return pattern.matcher(str).matches();   
  265.   }   
  266.   
  267. /**  
  268.    * 是否为空白,包括null和""  
  269.    *   
  270.    * @param str  
  271.    * @return  
  272.    */  
  273.   public static boolean isBlank(String str) {   
  274.     return str == null || str.trim().length() == 0;   
  275.   }   
  276. /**  
  277.    * 判断是否为质数  
  278.    *   
  279.    * @param x  
  280.    * @return  
  281.    */  
  282.   public static boolean isPrime(int x) {   
  283.     if (x <= 7) {   
  284.       if (x == 2 || x == 3 || x == 5 || x == 7)   
  285.         return true;   
  286.     }   
  287.     int c = 7;   
  288.     if (x % 2 == 0)   
  289.       return false;   
  290.     if (x % 3 == 0)   
  291.       return false;   
  292.     if (x % 5 == 0)   
  293.       return false;   
  294.     int end = (int) Math.sqrt(x);   
  295.     while (c <= end) {   
  296.       if (x % c == 0) {   
  297.         return false;   
  298.       }   
  299.       c += 4;   
  300.       if (x % c == 0) {   
  301.         return false;   
  302.       }   
  303.       c += 2;   
  304.       if (x % c == 0) {   
  305.         return false;   
  306.       }   
  307.       c += 4;   
  308.       if (x % c == 0) {   
  309.         return false;   
  310.       }   
  311.       c += 2;   
  312.       if (x % c == 0) {   
  313.         return false;   
  314.       }   
  315.       c += 4;   
  316.       if (x % c == 0) {   
  317.         return false;   
  318.       }   
  319.       c += 6;   
  320.       if (x % c == 0) {   
  321.         return false;   
  322.       }   
  323.       c += 2;   
  324.       if (x % c == 0) {   
  325.         return false;   
  326.       }   
  327.       c += 6;   
  328.     }   
  329.     return true;   
  330.   }   
分享到:
评论

相关推荐

    Java多线程机制(讲述java里面与多线程有关的函数)

    9.1 Java中的线程: Java程序中的线程是在操作系统级别的线程基础上进行抽象的。每个Java程序都有一个主线程,即由JVM启动并执行main方法的线程。线程代表了程序中的执行流,可以在不同的线程之间切换以共享CPU时间...

    JAVA中常用的jar包

    "JAVA中常用的jar包"这个主题涵盖了一系列广泛使用的库,这些库不仅包括标准的标签库,还可能包含数据库驱动程序。下面我们将深入探讨这些关键知识点。 首先,标准标签库(Standard Taglib Library,通常称为JSTL)...

    java常用工具类集合(也有转自他人的)

    "java常用工具类集合"是一个综合性的资源,它包含了从不同来源收集的实用工具类,旨在帮助开发者提高效率,减少代码重复。下面,我们将深入探讨这个主题,分析其中可能包含的知识点。 首先,`opslabJutil-master....

    几百个常用的 API 函数的简介

    在编程世界中,API(应用程序接口)是一组预先定义的函数、类、对象和常量,它们为开发者提供了与操作系统、库或服务交互的能力。API 函数是这些接口中的核心部分,它们允许程序员通过调用特定函数来实现特定功能,...

    Java一些常用验证整理

    这里的【标题】"Java一些常用验证整理"和【描述】"Java一些常用验证整理,附有有关代码"指的是收集并整理了一些常见的Java验证方法。这些方法主要用于检查用户输入、数据交换等场景中的字符串格式,以确保其合法性。...

    Java常用代码全集.7z

    "Java常用代码全集.7z"这个压缩包文件很可能是收集了一系列Java编程中的常见代码示例,旨在帮助开发者快速理解和学习各种Java编程技巧。这个文件包含了"Java常用代码全集.doc"文档,这可能是一个详细的代码库,覆盖...

    java常用字符串方法网络收集txt版

    1. **字符串类(String)**:Java中的字符串是不可变的,这意味着一旦创建了一个字符串对象,就不能改变其内容。字符串对象是通过`String`类创建的,例如`String str = "Hello, World!";`。 2. **创建字符串**:除了...

    JAVA基础加强 --学习心得一(JAVA中常用英文单词简写释义).pdf

    在学习JAVA基础的过程中,了解并掌握一些常用的英文缩写是非常重要的。这些缩写不仅代表着JAVA技术的核心概念,也是深入理解JAVA平台和应用开发的关键。以下是一些重要术语的详细解释: 1. **API (Application ...

    JAVA 常用的jar包(全)

    在Java开发中,`jar`(Java Archive)文件是一种打包格式,用于收集多个类文件、相关的元数据和资源文件,以便作为一个单元分发。这里提到的"JAVA 常用的jar包(全)"可能是一个包含多种常用Java库的集合,方便开发者...

    java常用英语

    - **Print**: 打印,Java中常用的输出方式之一。 - **Import**: 导入,用于在Java程序中引入其他类或包。 - **Graphics**: 图形,Java中的图形处理类,用于绘图。 - **Extend**: 扩展,Java中的继承关键字,用于创建...

    java常用字符串方法,网络收集,txt版

    本资源"java常用字符串方法,网络收集,txt版"主要整理了Java中常用的字符串处理方法,这对于Java程序员来说是一份宝贵的参考资料。下面,我们将详细探讨这些方法,并结合实例进行讲解。 1. **创建字符串** - `...

    java常用单词java常用单词.doc

    6. **system** - 在Java中,System类提供了系统级的函数,如标准输入、输出流。 7. **out** - System类的一个静态字段,通常与`println()`方法一起使用,用于输出信息到控制台。 8. **print** - 输出数据到指定的...

    java常用技术整理.rar

    4. **集合框架**:ArrayList、LinkedList、HashSet、HashMap等是Java中最常用的集合类,理解它们的特性、操作和适用场景非常重要。 5. **多线程**:Java提供了内置的多线程支持,包括Thread类和Runnable接口,线程...

    java学习中收集的有用资料

    3. **异常处理**:Java中的异常处理机制允许程序优雅地处理错误情况,通过try-catch-finally块捕获和处理异常,可以防止程序意外终止。 4. **集合框架**:Java集合框架包括List、Set、Map接口和它们的实现类,如...

    Spark常用的算子以及Scala函数总结.pdf

    16. collect(): 将分布式数据集中的元素收集到驱动程序中,返回一个数组。 除了上述的算子外,Scala 本身还提供许多强大的函数式编程特性,比如高阶函数、集合操作、模式匹配等,这些特性在 Spark 编程中也能得到...

    Java常用代码大全.7z

    "Java常用代码大全.7z"这个压缩包很可能是为了帮助开发者收集和整理了一系列常见的Java编程代码片段,以便在开发过程中快速参考和使用。文档中的内容可能涵盖了各种Java编程的基础到进阶知识点。 在Java编程中,...

    收集的java小程式

    Java中的多态主要体现在方法的重载(overloading)和重写(overriding)。 6. **异常处理**:Java提供了强大的异常处理机制,通过try-catch-finally语句块来捕获和处理运行时错误,保证程序的健壮性。 7. **集合...

    Java程序员面试题V1.2答案.doc

    finalize() 方法是 Java 中的一种垃圾收集器回调方法,它是在垃圾收集器将对象从内存中清除出去之前对这个对象调用的。finalize() 方法可以用来执行必要的清理工作,例如释放系统资源。 Java 程序员面试题 V1.2 ...

    近几年JAVA面试常用知识点.docx

    这是Java中基本的面向对象编程示例。 1.1.2 继承 继承允许一个类(子类)继承另一个类(父类)的属性和方法。在`Animal`和`Cat`的例子中,`Cat`类继承自`Animal`,并重写了`eat()`方法,表现出多态性。这样,`Cat`...

    常用JAVA面试题库

    Java是世界上最流行的编程语言之一,尤其在企业级应用开发领域占据主导地位。面试时,面试官通常会考察求职者对Java基础知识的掌握程度,包括语法、面向对象特性、集合框架、多线程、异常处理、I/O流、网络编程、JVM...

Global site tag (gtag.js) - Google Analytics