10.1 📖 概述

💬说明

直接内存不是虚拟机运行时数据区的一部分,也不是《Java虚拟机规范》中定义的内存区域。

直接内存是在Java堆外的,直接向系统申请的内存区间。

来源于NIO,通过存在堆中的DirectByteBuffer操作Native内存。

⚙️设置

  • 直接内存大小可以通过MaxDirectMemorySize设置
  • 如果不指定,默认与堆的最大值-Xmx参数值一致

🌠特点

通常,访问直接内存的速度会优于Java堆,即读写性能高。

  • 因此出于性能考虑,读写频繁的场合可能会考虑使用直接内存。
  • Java的NIO库允许Java程序使用直接内存,用于数据缓冲区。

⌨️示例

使用下列代码,直接分配本地内存空间

  1. public class BufferTest {
  2. private static final int BUFFER = 1024 * 1024 * 1024;
  3. public static void main(String[] args) {
  4. ByteBuffer byteBuffer = ByteBuffer.allocate(BUFFER);
  5. System.out.println("直接内存分配完毕");
  6. Scanner scanner = new Scanner(System.in);
  7. scanner.next();
  8. System.out.println("直接内存开始释放");
  9. byteBuffer = null;
  10. System.gc();
  11. }
  12. }

运行之后可以看到进程已分配内存:

image-20210307135732364.png

10.2 🌀 非直接缓冲区和缓冲区

🟣非直接缓冲区

读写文件,需要与磁盘交互,需要由用户态切换到内核。在内核态时,需要内存如下图的操作。

需要两份内存存储重复数据,效率低。

image-20210307140157439.png

🟠直接缓冲区

使用NIO时,如下图。

操作系统划出的直接缓存区可以被Java代码直接访问,只有一份。

NIO适合对大文件的读写操作。

image-20210307140437915.png

⌨️测试案例

分别使用BIO和NIO进行复制复联四电影文件(3.74GB):

  1. public class CopyFileTest {
  2. private static final String MOVIE_NAME = "D:/BaiduNetdiskDownload/复仇者联盟4-终局之战.mp4";
  3. private static final int ONE_HUNDRED_MB = 1024 * 1024 * 100;
  4. public static void main(String[] args) throws IOException {
  5. System.out.println("BIO耗时:" + inDirectBuffer(MOVIE_NAME, MOVIE_NAME + ".copy.mp4"));
  6. System.out.println("NIO耗时:" + directBuffer(MOVIE_NAME, MOVIE_NAME+ ".copy.mp4"));
  7. }
  8. /**
  9. * BIO复制
  10. */
  11. private static long inDirectBuffer(String src, String dest) throws IOException{
  12. long start = System.currentTimeMillis();
  13. FileInputStream inputStream = new FileInputStream(src);
  14. FileOutputStream outputStream = new FileOutputStream(dest);
  15. byte[] buffer = new byte[ONE_HUNDRED_MB];
  16. int len = 0;
  17. while ((len = inputStream.read(buffer)) != -1) {
  18. outputStream.write(buffer, 0, len);
  19. }
  20. long end = System.currentTimeMillis();
  21. inputStream.close();
  22. outputStream.close();
  23. return end - start;
  24. }
  25. /**
  26. * NIO复制
  27. */
  28. private static long directBuffer(String src, String dest) throws IOException{
  29. long start = System.currentTimeMillis();
  30. FileChannel inChannel = new FileInputStream(src).getChannel();
  31. FileChannel outChannel = new FileOutputStream(dest).getChannel();
  32. ByteBuffer byteBuffer = ByteBuffer.allocate(ONE_HUNDRED_MB);
  33. while (inChannel.read(byteBuffer) != -1) {
  34. byteBuffer.flip();
  35. outChannel.write(byteBuffer);
  36. byteBuffer.clear();
  37. }
  38. long end = System.currentTimeMillis();
  39. inChannel.close();
  40. outChannel.close();
  41. return end - start;
  42. }
  43. }

运行结果:

  1. BIO耗时:11946
  2. NIO耗时:9079

10.3 💢 存在的问题

🔺问题

  • 也可能导致OutOfMemoryError异常。
  • 由于直接内存在Java堆外,因此它的大小不会直接受限于-Xmx指定的最大堆大小,但是系统内存是有限的,Java堆和直接内存的总和依然受限于操作系统能给出的最大内存。

🔻缺点

  • 分配回收成本高。
  • 不受JVM内存回收管理。

💌总结

java process memory = java heap + native memory

进程内存空间 = 堆空间 + 本地内存