Hendra Kurniawan wrote:I need a regex to help verifying email address:
1. at least 2 letter before @
2. at least 3 letter domain name
3. at least 2 letters for extension
I've never used regex before, please give example. thanks
Jesper Young wrote:What is the variable timeZone in your code? Is it set to UTC or to some other timezone?
Is the string you are parsing a timestamp in UTC? Then you need to set the timezone on the SimpleDateFormat object too (to the UTC timezone, ofcourse).
aruna sameera wrote:what is the different between jsp and sevlet?
i mean wh ywe use jsp than servlet?
Niraj Pendal wrote:Hi,
I am developing an application using swing.
I am using confirmation Dialog box to ask for User confirmation.
JOptionPane.showConfirmDialog(this, "Are you sure want to delete?", "", JOptionPane.OK_CANCEL_OPTION);
Dialog box contains Java coffee icon on let left top corner(normal Java application icon).
In frame "frame.setUndecorated(true)" can solve my problem but how can I remove this icon from confirm dialogbox?![]()
Please suggest me some solution. Provide me some code sample or any useful link.
Thanks in Advance.