2

Я пытаюсь сравнить мой жесткий диск и найти пропускную способность в Мбит / с и задержку в миллисекундах.

Это мой код:

public class OneMB implements Timer {
public static void main(String a[]) throws IOException {
    OneMB oneMB = new OneMB();
    oneMB.process();

}
public void process() throws IOException{
    RandomAccessFile randomAccessFile=null;
    try{            
        File file=new File("oneMByte.txt");
        byte[] b=new byte[1024];
        randomAccessFile=new RandomAccessFile(file, "rw");
        randomAccessFile.setLength(1024*1024*10);
        long endLatency=0;
        int i=0;
        long startWrite = this.getTimer();
        randomAccessFile.writeBoolean(true);
        endLatency=this.getTimer();                 
        for (i = 0; i < 1024*10*1024-1; i++) {
            randomAccessFile.writeBoolean(true); //Writes a boolean to the file as a one-byte value.
        }
        long endWrite = this.getTimer();
        randomAccessFile.seek(0);
        randomAccessFile.readFully(b);
        long endRead=this.getTimer();
        double timeTaken=(endRead-startWrite)/1000000000.0;
        double data=10.0;
        double throughput=data/timeTaken;
        double latency=(endLatency-startWrite)/1000000.0;//time for the reception of 1 byte
        System.out.println(timeTaken);
        System.out.println(data);
        System.out.println("Throughput="+throughput+" Mb/s");
        System.out.println("Latency="+latency+" ms");
        randomAccessFile.close();
        }
        catch (Exception e) {
            e.printStackTrace();
            randomAccessFile.close();
        }
}

@Override
public long getTimer() {
    // TODO Auto-generated method stub
    return System.nanoTime();
}
}

Я получаю вывод как:

56.065550577
10.0
Throughput=0.17836264688538242 Mb/s
Latency=0.057668 ms

У меня достаточно быстрый компьютер:

  • 1 ТБ жесткого диска при 5400 об / мин
  • Intel i7 с четырехъядерным процессором @ 2,1 ГГц
  • 8 ГБ оперативной памяти DDR3

Может кто-нибудь сказать мне, будет ли пропускная способность такой низкой или я использую неправильный подход?

0