yo deseo que tenga este formato
Código PHP:
19/02/2011
Código PHP:
fecha:Sat Feb 19 00:00:00 CLST 2011
Como puedo conseguir que en el System.out.println("Fecha:"+me.Fecha()); me muestre
Código PHP:
19/02/2011
muchas gracias
Este es el programa
Código PHP:
import java.util.Date;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.text.DateFormat;
public class Ingreso {
public static void main(String args [])
{
Date fecha=null;
try{
String actual="19/02/2011";
SimpleDateFormat formato=new SimpleDateFormat("dd/MM/yyyy");
fecha=formato.parse(actual);
}
catch(ParseException e){
e.printStackTrace();
}
Metodos me=new Metodos();
me.setFecha(fecha);
System.out.println("Fecha:"+me.Fecha());
}
Código PHP:
import java.util.Date;
import java.io.*;
public class Metodos {
private Date fechaa;
public void setFecha(Date fechaa)
{
this.fechaa=fechaa;
}
public Date getFecha()
{
return fechaa;
}
}