how to format date from yyyy-mm-dd to dd-mm-yyyy

how to format date from yyyy-mm-dd to dd-mm-yyyy

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>

<body>
<html>
<head>
<script type="text/javascript">
    var bas_cal,dp_cal,ms_cal;      
window.onload = function () {
    dp_cal  = new Epoch('epoch_popup','popup',document.getElementById('dob1'));
    dp_cal  = new Epoch('epoch_popup','popup',document.getElementById('dob2'));

};
</script>
<script type="text/javascript">
function findDiff(){
var dob1= document.getElementById("dob1").value;
var dob2= document.getElementById("dob2").value;
var date1 = new Date(dob1);
var date2=new Date(dob2);

var ONE_DAY = 1000 * 60 * 60 * 24
var d1 = date1.getTime()
var d2 = date2.getTime()
var diff = Math.abs(d1 - d2)
document.getElementById("days").value=Math.round(diff/ONE_DAY);
}
</script>

</head>
<body>
<?php include "includes/header.php";?>
<pre>
Enter Date1(yyyy-mm-dd): <input type="text" name="dob1" id="dob1" />
Enter Date2(yyyy-mm-dd): <input type="text" name="dob2" id="dob2" onblur="findDiff()" />
Number of days: <input type="text" name="days" id="days" />
<!-- <input type="submit" value="calculate" onclick="findDiff();"> -->
</pre>
</body>
</html>
</body>
</html>

In the above code, inorder to calculate the nos. of days between two dates, the date format is in "yyyy-mm-dd", so what i want is in "dd-mm-yyyy" format. So, how to change it? I would be much appreciated for your help and support.

View Answers

February 9, 2013 at 7:13 PM

hi friend,

you can use the SimpleDateFormat() class for formatting the date. This class takes the argument as a String.

For detail tutorial please go through the following link may this will be helpful for you.

Date Format Example









Related Tutorials/Questions & Answers:
how to format date from yyyy-mm-dd to dd-mm-yyyy
how to format date from yyyy-mm-dd to dd-mm-yyyy  <!DOCTYPE html... to calculate the nos. of days between two dates, the date format is in "yyyy-mm-dd", so what i want is in "dd-mm-yyyy" format. So, how to change it? I would be much
How to convert string to date in java in yyyy-mm-dd format?
How to convert string to date in java in yyyy-mm-dd format?  Hi, I have a date in yyyy-mm-dd format. How to convert string to date in java in yyyy... java.util.Date; /* * Example of formatting date in Java * from yyyy-mm-dd formaat
Advertisements
How to convert date to string in Java in yyyy-mm-dd format
to String in yyyy-mm-dd format. How to convert date to string in Java in yyyy...How to convert date to string in Java in yyyy-mm-dd format  Hi, I... it to yyyy-mm-dd String format. Here is Java example for converting String Date
How to convert current date to dd mm yyyy format in Java?
How to convert current date to dd mm yyyy format in Java?  Hi, How to convert current date to dd mm yyyy format in Java? In my program I have to display the current date in the dd-mm-yyyy format to user on the website. How
How to format current date into yyyy-mm-dd in Java
How to format current date into yyyy-mm-dd in Java  Hi, I have requirement to format the date into yyyy-MM-dd format for inserting it into MySQL...-dd"); formats the date into yyyy-MM-dd format. the MM is used for getting
c# current date in yyyy-MM-dd format
format. In c# how to get current date in yyyy-mm-dd format...c# current date in yyyy-MM-dd format  Hi, How to get the current...(dateString ); Above code will give date into 2021-01-21 format (yyyy-MM-dd). I
php date format yyyy-mm-dd
php date format yyyy-mm-dd  date format yyyy-mm-dd validation
validationrule for date as format yyyy-mm-dd in drools
format yyyy-mm-dd: How i write the validation rule for date as a format yyyy-mm-dd...validationrule for date as format yyyy-mm-dd in drools  Please give...("outofServiceStartDate", "stmpOutOfServiceStartDateInvalid", "Please use the format yyyy-mm-dd
Java convert string to date from format yyyy-mm-dd hh mm ss
Java convert string to date from format yyyy-mm-dd hh mm ss  Hi, I have date in the string yyyy-mm-dd hh mm ss format. Now I will want this string date into the date format. How to convert string to date from format yyyy-mm-dd
get current date in java in yyyy mm dd hh mm ss format
get current date in java in yyyy mm dd hh mm ss format  Hi, I want to get the current date into string yyyy mm dd hh mm ss format. How to get current date in java in yyyy mm dd hh mm ss format in a Java program? Thanks  
how to convert the entire column field of table to dd/mm/yyyy format in microsoft sql server?
how to convert the entire column field of table to dd/mm/yyyy format in microsoft sql server?  how to convert the entire column field which is in encryted like 1263332444 of table to dd/mm/yyyy format in microsoft sql server? i
convert yyyy-mm-dd hh mm ss to date in sql
convert yyyy-mm-dd hh mm ss to date in sql  Hi, How to convert yyyy-mm-dd hh mm ss to date in sql? Thanks   Hi, You should use following code in SQL DATE_FORMAT(STR_TO_DATE(my_date, "%Y/%m/%d %H:%i:%s.%f"), "%Y-%m
select date in desired format
select date in desired format  how to select date from the database in DD/MM/YYYY format, because if i am trying select data from the database i am getting value in yyyy/mm/dd and time format like below "2012-05-07 00:00:00.0
yyyy-mm-dd validation in javascript
yyyy-mm-dd validation in javascript   My form return value like (2011-10-05)yyyy-mm-dd ... my End date greater than my start date.. How to do validation in javascript
Mysql Date Expression
a format  'YYYY-MM-DD' and 'HH.MM.SS'. Timestamp columns are displayed... Mysql Date Expression       The Tutorial illustrate an example from 'Mysql Date Expression
Validating date in javascript - Java Interview Questions
; In what format you are going to enter the date in Text box (i.e : dd/mm/yyyy or mm/dd/yyyy or yyyy/mm/dd...Validating date in javascript   Hi Deepak, Can u give
Change Date Format - Development process
Change Date Format  Hi, While retrieving data frm database, date format displayed as yyyy/mm/dd but i want to display as dd/mm/yyyy. I have tried parse,format functions but not getting output. can u send me code
Mysql Date Type
the 'emp_dob ' records in 'yyyy-mm-dd' format. select emp_dob from employee: The select query return the emp_dob  records in "yyyy-mm-dd" format...; Mysql Date Type is used to show the date in "yyyy-mm-dd" format.The
how to get date format in string from date object containing real date in java
how to get date format in string from date object containing real date in java  i want to get data string format from date object where date object...-yyyy HH:mm:ss"); String datetext4=sdf4.format(date
how to get date format in string from date object containing real date in java
how to get date format in string from date object containing real date in java  i want to get data string format from date object where date object...-yyyy HH:mm:ss"); String datetext4=sdf4.format(date
java format date
java format date  Hi, How can I format the date in the following pattern? yyyy-MM-dd   import java.util.*; import java.text.*; class...-MM-dd"); String formattedDate=sdf.format(date
Retrieve date from MYSQL database
. The default format of date in MYSQL is YYYY-MM-DD. ExampleADS_TO_REPLACE_1...Retrieve date from MYSQL database In this tutorial, you will learn how... SimpleDateFormat("dd/MM/yyyy"); System.out.println(sdf.format(dd)); } } catch
date format - Java Beginners
date format  How to convert yyyy-mm-dd to dd-mmm-yyyy  Hi friend, Code to convert yyyy-mm-dd to dd-mmm-yyyy : import java.util.Date...(); SimpleDateFormat formatter = new SimpleDateFormat("yyyy-mm-dd
String to Date format
SimpleDateFormat("yyyy-MM-dd"); String formattedDate=sdf.format(date...("yyyy-MM-dd"); String formattedDate=sdf.format(date... ).... How to Change This values Like to database date format Eg(2011-01-20) using
Struts 2 Date Format Examples
; <tr> <td>Date in (MM/dd/yyyy hh:mm AM/PM) Format:</td> <td> <b><s:date name="todayDate" format="MM/dd/yyyy...;tr> <td>Date in (dd-MMM-yyyy hh:mm AM/PM) Format:</td>
Java Date conversion - Date Calendar
Java Date conversion  How do I convert 'Mon Mar 28 00:00:00 IST 1983' which is a java.util.Date or String to yyyy/MM/dd date format in sql
JavaScript calculate age from date of birth
{ alert("Invalid date format. Please Input in (dd/mm/yyyy) format... date format. If inputted date of birth is in form of dd/mm/yyyy... format (dd/mm/yyyy) if (pattern.test(dob)) { var y1
Formatting a Date Using a Custom Format
SimpleDateFormat("dd-MM-yyyy"); String formattedDate = f.format(date...Formatting a Date Using a Custom Format In this section, you will learn how to format a date using a custom format. Java has provide many classes that allow
how to set image - EJB
(); /** Converts the date(dd/mon/yyyy) format to DD/MM/YYYY format*/ String sfromdate...=sampleJasperReportForm.getTo_date(); /**Converts the date(DD/MM/YYYY) format to YYYY-MM-DD format...(); jrDesignQuery.setText("select * from emp_header where (DATE_FORMAT(creation_date
date format - JSP-Servlet
"; SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); Date dateStr...); System.out.println("yyyy-MM-dd date is ==>"+formattedDate); Date...); System.out.println("dd-MMM-yyyy date is ==>"+formattedDate); } } Thanks
How to Store Date - Java Beginners
JFrame{ InsertDate(){ JLabel l=new JLabel("Enter Date (dd/MM/yyyy...(); SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); String todayDate=sdf.format(d...How to Store Date  How to Validate date in JTextField ,How I can
date_parse_from_format
  date_parse_from_format date_parse_from_format function returns... date_parse_from_format ( string $format , string $date ) Parameters of Date...;25.8.2009 17:00-03:00"; print_r(date_parse_from_format("j.n.Y H:iP"
java yesterday - Date Calendar
java yesterday  And how to make date format DD/MM/YYYY,thank's ... static void main(String args[]){ Date todaysDate = new java.util.Date(); SimpleDateFormat formatter = new SimpleDateFormat("dd/MM/yyyy"); String
Java Date format - Java Server Faces Questions
(DD/MM/YYYY).   Hi friend, Code to calculate days between two dates in format(DD/MM/YYYY) import java.util.Date; import... format SimpleDateFormat sdfSource = new SimpleDateFormat("dd/MM/yyyy
Date Formay - Date Calendar
)) System.out.print("Current date(" + new SimpleDateFormat("dd/MM/yyyy"). format...("dd/MM/yyyy").format(cal.getTime())); else if(cal.after(currentcal)) System.out.print("Current date(" + new SimpleDateFormat("dd/MM/yyyy"). format
How to convert current date to mm dd yyyy format in Java?
How to convert current date to mm dd yyyy format in Java?  Hi, How to convert current date to mm dd yyyy format in Java? Share me the program... for converting current date into MM-dd-yyyy format. Here is full code: package
String to date with no format
date format can be (mm-dd-yyyy) if the 99th record also was 06-06-2006 the result should be date format can be (mm-dd-yyyy;dd-mm-yyyy) can sum1 please help me... into a date .. this is simple .. but i want to do it without knowing the date format
struts2.2.1 date Format example
;Date Format(EEEE yyyy-MM-dd):</b><br/><br/> <s:date name..._TO_REPLACE_25 <hr> <b>Date Format (EEEE MM/dd/yyyy hh:mm AM/PM):<...;b>Date Format (EEEE dd-MMM-yyyy hh:mm AM/PM) :</b><br/><br
date format in javascript
date format in javascript  display date format as dd/mm/yyyy and day... help me. thank u var date=/^\d{2}\/\d{2}\/\d{4}$/ if(document.userform.joindate.value.search(date)==-1) { alert("please enter date format as dd/mm/yyyy
PHP date_create_from_format function
date_create_from_format  function The date_create_from_format... according to the specified format. Parameters format Format accepted by date... DateTime object formatted according to the specified format.  Description
Format date/time using <fmt:formatDate> tag of jstl
in this section we will explain how to format date/time as per user requirment by using... by user in what pattern user want to format. For example: dd-mm...%">Attribute : pattern="yyyy-MM-dd hh:mm:ss"</td> <
Mysql Date Select
; The Tutorial elaborate an example from 'Mysql Date Select'. This section makes you easy to understand how to get the current date from your database. The SELECT DATE ('YYYY-MM-DD') is used to return the current selected date. SELECT DATE
Simple date formatter example
the date object into the "yyyy-MM-dd HH:mm:ss" format. formatter = new SimpleDateFormat("yyyy-MM-dd"); formattedDate = formatter.format(todaysDate);ADS... SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss
How to add download option for openwith and saveAs on exporting file to excel in servlet
= new SimpleDateFormat("dd-MM-yyyy"); Date date = sdfSource.parse(datum1... sdfDestination = new SimpleDateFormat("yyyy-MM-dd"); datum1... + "'"; // strQuery = "SELECT * FROM cdrcost where date(calldate) between '2011-09-01
How to add download option for openwith and saveAs on exporting file to excel in servlet
= new SimpleDateFormat("dd-MM-yyyy"); Date date = sdfSource.parse(datum1... sdfDestination = new SimpleDateFormat("yyyy-MM-dd"); datum1... + "'"; // strQuery = "SELECT * FROM cdrcost where date(calldate) between '2011-09-01
standard format in C++
standard format in C++  Please help me with this one. thank you so much. **"Write a C++ program to read a date in US standard format (mm dd yyyy) and print it in Australia standard format (dd mm yyyy
Java Swing Date Difference
in the format dd-MM-yyyy using the SimpleDateFormat class. We have created...(); String d2=text2.getText(); Date date1 = new SimpleDateFormat("dd-MM-yyyy").parse(d1); Date date2 = new SimpleDateFormat("dd-MM-yyyy").parse
Date related query - Date Calendar
date in one format System.out.println("Enter Start Date in Format DD/MM... in Format DD/MM/yyyy"); String strDate1 = br.readLine(); try... SimpleDateFormat sdfSource = new SimpleDateFormat("DD/MM/yyyy
continue java - Date Calendar
continue java  How to make a subtract date from jframe like jtexfield, data can input into jtextfied ? and how to get year, yesterday a have a question about how to substract dd mm yyyy can in this subtract have a year.thank
Date operation - JDBC
DateFormat df = new SimpleDateFormat("dd/MM/yyyy"); String today = df.format(date... in a short format df = new SimpleDateFormat("EEE, dd/MM/yyyy"); today = df.format...("MM/dd/yyyy"); today = df.format(date); System.out.println("Today

Ads