double dd = 3.262724538037E-4;
DecimalFormat df = new DecimalFormat("###############.##########################");
System.out.println(df.format(dd));

解决方案 »

  1.   

    不怎么会
    但好象就是3楼vongood说的
      

  2.   

    import java.text.DecimalFormat;class test 
    {
    public static void main( String[] args ) 
    {
    double d = 3.262724538037E-4;
                      DecimalFormat df = new DecimalFormat( "#.################" );
                      System.out.println( df.format( d ) );
    }
    }