0

所以我正在为 Android 创建一个基准测试应用程序。现在我正在尝试添加测试内部存储读/写速度的能力。为了测试读取速度,我首先创建了一个文件(几兆字节)。接下来,我在 5 秒内尽可能多地读回文件,然后计算速度。

下面是演示我的代码的简化版本的示例代码。我从代码中得到的输出(在 Galaxy S4 上)是:

File Size (should be 4096kb): 4096kb
Total Read: 3137792 MB
Read Rate: 612.85 MB/sec

这显然太快了(我希望它在 30-60MB 范围内)。

测试代码:

private void readTest()
{
    final int FILE_SIZE = 1024 * 1024 * 4;
    final int CHUNK_SIZE = 1024 * 128;
    final int CHUNK_NUM = FILE_SIZE / CHUNK_SIZE;
    final int READ_DURATION = 5000;

    File outputDir = Globals.getContext().getCacheDir();
    try
    {
        File tempFile = File.createTempFile("InternalStorageRead", "tmp", outputDir);

        // Generate some data to write to temp file
        byte[] buffer = new byte[CHUNK_SIZE];
        for (int i = 0; i < CHUNK_SIZE; i++)
        {
            buffer[i] = (byte)((i % 256) - 128);
        }

        // Write generated data into file
        BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(tempFile));
        for (int i = 0; i < CHUNK_NUM; i++)
        {
            bos.write(buffer);
            bos.flush();
        }
        bos.close();

        System.out.println("File Size (should be " + (FILE_SIZE / 1024) + "kb): " + (tempFile.length() / 1024) + "kb");

        long startTimeMS = System.currentTimeMillis();

        FileInputStream is = new FileInputStream(tempFile);
        long bytesRead = 0;
        while (System.currentTimeMillis() - startTimeMS < READ_DURATION)
        {
            for (int i = 0; i < 10; i++)
            {
                int read = is.read(buffer);
                if (read > 0)
                {
                    bytesRead += read;
                }
                else
                {
                    // EOF - start reading again from beginning
                    is.close();
                    is = new FileInputStream(tempFile);
                }
            }
        }
        is.close();

        double mb = bytesRead / (1024.0 * 1024.0);
        System.out.println("Total Read: " + (bytesRead / 1024) + " MB");

        double readRate = mb / (READ_DURATION / 1000.0);
        System.out.println("Read Rate: " + readRate + " MB/sec");
    }
    catch (IOException e1)
    {
        e1.printStackTrace();
        return;
    }
}

似乎我的代码搞砸了(我错过了一些东西,或者编译器优化),或者它与 Android 有什么关系?像内存缓存或类似的东西。

4

1 回答 1

1

您的数据被缓存在 RAM 中,因此您正在从那里测量速度。您需要为 Direct I/O 打开文件以避免缓存。然后一些更高版本的 Android 版本或硬件设备不允许在内部驱动器上这样做。此外,驱动器的路径不是标准的。请参阅我的 DriveSpeed 部分:

http://www.roylongbottom.org.uk/android%20benchmarks.htm#anchor17

在那里,您可以获得带有内部和外部驱动器按钮的我的 DriveSpeed.apk 以及不删除测试文件的选项。关闭和打开电源会清除缓存,并且可以从驱动器测量读数(一次)。您可以安排使用 3 个程序来执行此操作,一个用于写入,一个用于读取,一个用于删除。

还有 DriveSpd2.apk,您可以在其中输入要使用的路径。

带有 Java 和 JNI/C 代码的 Eclipse 项目位于

http://www.roylongbottom.org.uk/Android%20Benchmarks.zip

于 2013-09-28T13:29:11.217 回答