首页 > 其他 > 详细

Runtime,Date,Calendar,SimpleDateFormat

时间:2019-04-17 10:49:33      阅读:87      评论:0      收藏:0      [点我收藏+]
package cn.itcast.other;

import java.io.IOException;

/*
 Runtime类:代表了当前程序的运行环境。
 
Runtime对象需要掌握方法:
     exec(String command)    执行指定路径下的可执行文件。

 
 
 
 */
public class Demo3 {
    
    public static void main(String[] args) throws IOException, Exception {
        Runtime runtime = Runtime.getRuntime();    //获取Runtime对象
    /*    Process p  = runtime.exec("C:\\Windows\\notepad.exe");
        Thread.sleep(3000);  //让当前程序暂停3秒钟
        p.destroy(); //杀死进程。
     */
        System.out.println("试图使用的最大内存量:"+ runtime.maxMemory());
        System.out.println("Java 虚拟机中的内存总量:"+ runtime.totalMemory());
        System.out.println("当前空闲的内存:"+ runtime.freeMemory());
    }
}


package cn.itcast.other;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;


/*
 Date 日期类:
 
 
 Calendar  日期类
 
  SimpleDateFormat  日期格式化类:
          作用: 
              1. 可以将时间对象转成指定格式的字符串。    format();
              2. 可以把字符串转成日期对象。            parse();
          

 */
public class Demo4 {

    public static void main(String[] args) throws Exception {
        /*Date date = new Date(); //获取当前系统时间的对象。
        System.out.println("年份:"+ );
        
        Calendar calendar = Calendar.getInstance(); //获取了当前的系统时间
        System.out.println("年份:"+ calendar.get(Calendar.YEAR));
        System.out.println("月份:"+ (calendar.get(Calendar.MONTH)+1));
        System.out.println("日:"+ calendar.get(Calendar.DATE));
        
        System.out.println("时:"+ calendar.get(Calendar.HOUR_OF_DAY));
        System.out.println("分:"+ calendar.get(Calendar.MINUTE));
        System.out.println("秒:"+ calendar.get(Calendar.SECOND));
        
        //   xxxx年 xx月 xx日   xx:xx:xx
        
         
        */
        
        
        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy年MM月dd日   HH:mm:ss");    //创建日期格式化类对象
        //把日期对象转换指定格式的字符串  format
        /*String text = dateFormat.format(new Date());
        System.out.println("当前系统时间:"+ text);*/
        
        
        //字符串----> 时间对象    字符串的格式必须要与SimpleDateformat指定的模式要一致,否则报错。
        String text = "1990年09月08日  07:01:00";
        Date date = dateFormat.parse(text);
        System.out.println(date);
        
        
    }
    
}

 

Runtime,Date,Calendar,SimpleDateFormat

原文:https://www.cnblogs.com/hbxZJ/p/10721818.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!