How u validate date in DD/MM/YY format. and how u validate
money in ur jsp
Answer Posted / test
Locale locale = Locale.GERMANY;
String string =
NumberFormat.getCurrencyInstance(locale).format(123.45);
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
Java is fully object oriented languages or not?
How to deploy Jar, War files in J2EE?
Name the eight primitive java types.
What class is the top of the awt event hierarchy?
how to use debug in my elipse to solve problems that exist in my project
what are the advantages of JTA over JTS?
What is the difference between long.class and long.type?
How messaging services are done, before release of JMS?
Explain phantom read?
What are the benefits of detached objects?
What value does read() return when it has reached the end of a file?
why static class in java
What happens when a thread cannot acquire a lock on an object?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!
Why are some of the class and element names counter-intuitive?