Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Open Source License 

import java.io.IOException;
import java.io.InputStream;

public class Main {
    public static double readDouble(InputStream in) throws IOException {
        long bits = ((long) (in.read() & 0xff) << 56) | ((long) (in.read() & 0xff) << 48)
                | ((long) (in.read() & 0xff) << 40) | ((long) (in.read() & 0xff) << 32) | ((in.read() & 0xff) << 24)
                | ((in.read() & 0xff) << 16) | ((in.read() & 0xff) << 8) | (in.read() & 0xff);
        return Double.longBitsToDouble(bits);
    }
}