Java时间和时间戳的相互转换

/*
     * 将时间转换为时间戳
     */
    public static String dateToStamp(String s) throws ParseException{
        String res;
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        Date date = simpleDateFormat.parse(s);
        long ts = date.getTime();
        res = String.valueOf(ts);
        return res;
    }
/*
     * 将时间戳转换为时间
     */
    public static String stampToDate(String s){
        String res;
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        long lt = new Long(s);
        Date date = new Date(lt);
        res = simpleDateFormat.format(date);
        return res;
    }
时间: 2024-10-26 22:13:49

Java时间和时间戳的相互转换的相关文章

java中时间与时间戳的相互转换

1 package com.test.one; 2 3 import java.text.ParseException; 4 import java.text.SimpleDateFormat; 5 import java.util.Date; 6 7 public class TimeOne { 8 public static void main(String[] args) throws Exception { 9 String date1 = "2016-05-22 15:11:48&qu

JS 时间与时间戳的相互转换

<script type="text/javascript"> var time = "2015-04-22 21:41:43";//2015-4-22 21:41:43 var temp = time.split(' '); var arr = temp[0].split('-'); var brr = temp[1].split(':'); var timestamp = new Date(Date.UTC(arr[0],arr[1]-1,arr[2

日期时间和时间戳的相互转换

function formats(time, format){ /*time:2016-10-17*/ /*format:yyyy-MM-dd HH:mm:ss*/ var times = parseInt((new Date(time.replace(new RegExp("-","gm"),"/"))).getTime()) + parseInt(90 * 24 * 60 * 60 * 1000); var t = new Date(time

java,时间转时间戳的转换以及各种date格式的转化

package com.henry.test; import java.text.SimpleDateFormat;import java.util.Date;import java.util.HashMap;import java.util.Map; import org.apache.commons.lang.StringUtils; import com.shopin.core.util.HttpClientUtil; public class test { /** * 说明: * @pa

js 时间格式与时间戳的相互转换示例代码

一.时间转换时间戳 function transdate(endTime){ var date=new Date(); date.setFullYear(endTime.substring(0,4)); date.setMonth(endTime.substring(5,7)-1); date.setDate(endTime.substring(8,10)); date.setHours(endTime.substring(11,13)); date.setMinutes(endTime.sub

js 时间格式与时间戳的相互转换和计算几天后的日期是哪一天

//把日期转换成时间戳 function get_unix_time(time1){    var newstr = time1.replace(/-/g,'/');     var date =  new Date(newstr);     var time_str = date.getTime().toString();    return time_str.substr(0, 10);} 一.时间转换时间戳 function transdate(endTime){ var date=new

使用java代码将时间戳和时间互相转换

时间戳转时间: SimpleDateFormat simpleDateFormat = null; simpleDateFormat = new SimpleDateFormat("yyyyMMdd"); Date date = new Date(System.currentTimeMillis()); String day = simpleDateFormat.format(date); simpleDateFormat = new SimpleDateFormat("HH

JS时间戳与时间字符串之间的相互转换

时间字符串 转 时间戳 /** * 时间字符串 转 时间戳 * @param {String} time_str 时间字符串(格式"2014-07-10 10:21:12") * @returns {Number} 10位数的时间戳(秒值:1404958872000) */ const toTimestamp = time_str => +new Date(time_str) / 1000 默认转化后为Number类型后获得的是时间的毫秒数值,需求是要10位数的秒值,所以需要除以

Java 时间处理的四个基本实例

时间处理是任何编程语言经常会遇到的, 本文章向大家介绍java时间处理的四个基本实例.具体实例如下: Java格式化时间(SimpleDateFormat) Java获取当前时间 Java获取年份.月份等 Java时间戳转换成时间