Muchas veces necesitamos en nuestras aplicaciones web, utilizar validadores y convertidores de datos para ajustarlos a algunos requerimientos especiales, como simboloos de moneda por mencionar un ejemplo, en el sitio de NetBeans contamos con un excelente tutorial que puedes Converting and Validating Data in Visual Web JSF Applications
Imagen y codigo mostrado en el tutorial en NetBeans
public String button1_action( ) {
// get the amount of dollars the user entered
Number dollars = (Number) textField1.getValue();
// exchange the dollars for euros
double euros = dollars.doubleValue() * us2euros;
// display the amount of euros
staticText1.setText(new Double(euros));
// figure out the date and time
Date date = new Date();
staticText2.setText(date);
return null;
}
Imagen y codigo mostrado en el tutorial en NetBeans
public String button1_action( ) {
// get the amount of dollars the user entered
Number dollars = (Number) textField1.getValue();
// exchange the dollars for euros
double euros = dollars.doubleValue() * us2euros;
// display the amount of euros
staticText1.setText(new Double(euros));
// figure out the date and time
Date date = new Date();
staticText2.setText(date);
return null;
}
Comments