Monday, May 27, 2013

Tuesday, May 7, 2013

Comment

आज कल इस देश में क्या हो रहा है .

Monday, May 6, 2013

Important Link

http://struts.apache.org/2.2.1/struts2-plugins/struts2-dojo-plugin/apidocs/org/apache/struts2/dojo/components/Autocompleter

http://www.precisejava.com/javaperf/j2ee/JDBC.htm

Document compatibility Check:
Use this line in all page.


<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8">

Converting exponential value in java to a number format

You can convert easily with the following methods:>
Double.valueOf("9.78313E+2").longValue() or
BigDecimal bd = new BigDecimal("9.78313E+2");
long val = bd.longValue();
Assuming that the given number is in a String form.