import java.text.DecimalFormat;
import java.text.MessageFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateTest {
private static DecimalFormat dfdouble = new DecimalFormat("#######.######");
private static MessageFormat mf = new MessageFormat("");
private double d11=3.141592651;
/**
* @param args
*/
public static void main(String[] args) {
String pig = "{0}-{1}-{2}={3}-{4}{5}{6}{7}{8}{9}{10}{11}{12}{13}{14}{15}{16}";
Object[] array = new Object[]{"222A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q"};
String value = MessageFormat.format(pig, array);
System.out.println(value);
// TODO Auto-generated method stub
Date curdate=new Date();
System.out.println(curdate);
SimpleDateFormat df= new SimpleDateFormat ("yyyy-mm-dd hh:mm:ss");
put(CONVERT("YYYY",new Date()));
try {
put(df.parse("2016-02-02 11:22:60"));
Double d1=3.111111;
put(null);
put(dfdouble.format(d1)+"double");
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private void formatDouble(){
put(dfdouble.format(d11)+"double");
}
static String CONVERT(String strDate,Date date){
SimpleDateFormat df= new SimpleDateFormat (strDate);
return df.format(date);
}
static void put(Object o){
System.out.println(o);
}
}
import java.text.MessageFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateTest {
private static DecimalFormat dfdouble = new DecimalFormat("#######.######");
private static MessageFormat mf = new MessageFormat("");
private double d11=3.141592651;
/**
* @param args
*/
public static void main(String[] args) {
String pig = "{0}-{1}-{2}={3}-{4}{5}{6}{7}{8}{9}{10}{11}{12}{13}{14}{15}{16}";
Object[] array = new Object[]{"222A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q"};
String value = MessageFormat.format(pig, array);
System.out.println(value);
// TODO Auto-generated method stub
Date curdate=new Date();
System.out.println(curdate);
SimpleDateFormat df= new SimpleDateFormat ("yyyy-mm-dd hh:mm:ss");
put(CONVERT("YYYY",new Date()));
try {
put(df.parse("2016-02-02 11:22:60"));
Double d1=3.111111;
put(null);
put(dfdouble.format(d1)+"double");
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
private void formatDouble(){
put(dfdouble.format(d11)+"double");
}
static String CONVERT(String strDate,Date date){
SimpleDateFormat df= new SimpleDateFormat (strDate);
return df.format(date);
}
static void put(Object o){
System.out.println(o);
}
}