菜鸟笔记
提升您的技术认知

bio、nio和aio的区别、三种io的原理与用法-ag真人游戏

io

什么是io? 它是指计算机与外部世界或者一个程序与计算机的其余部分的之间的接口。它对于任何计算机系统都非常关键,因而所有 i/o 的主体实际上是内置在操作系统中的。单独的程序一般是让系统为它们完成大部分的工作。

在 java 编程中,直到最近一直使用 流 的方式完成 i/o。所有 i/o 都被视为单个的字节的移动,通过一个称为 stream 的对象一次移动一个字节。流 i/o 用于与外部世界接触。它也在内部使用,用于将对象转换为字节,然后再转换回对象。

bio

java bio即block i/o , 同步并阻塞的io。

bio就是传统的java.io包下面的代码实现。

nio

什么是nio? nio 与原来的 i/o 有同样的作用和目的, 他们之间最重要的区别是数据打包和传输的方式。原来的 i/o 以流的方式处理数据,而 nio 以块的方式处理数据。

面向流 的 i/o 系统一次一个字节地处理数据。一个输入流产生一个字节的数据,一个输出流消费一个字节的数据。为流式数据创建过滤器非常容易。链接几个过滤器,以便每个过滤器只负责单个复杂处理机制的一部分,这样也是相对简单的。不利的一面是,面向流的 i/o 通常相当慢。

一个 面向块 的 i/o 系统以块的形式处理数据。每一个操作都在一步中产生或者消费一个数据块。按块处理数据比按(流式的)字节处理数据要快得多。但是面向块的 i/o 缺少一些面向流的 i/o 所具有的优雅性和简单性。

aio

java aio即async非阻塞,是异步非阻塞的io。

区别及联系

bio (blocking i/o):同步阻塞i/o模式,数据的读取写入必须阻塞在一个线程内等待其完成。这里假设一个烧开水的场景,有一排水壶在烧开水,bio的工作模式就是, 叫一个线程停留在一个水壶那,直到这个水壶烧开,才去处理下一个水壶。但是实际上线程在等待水壶烧开的时间段什么都没有做。

nio (new i/o):同时支持阻塞与非阻塞模式,但这里我们以其同步非阻塞i/o模式来说明,那么什么叫做同步非阻塞?如果还拿烧开水来说,nio的做法是叫一个线程不断的轮询每个水壶的状态,看看是否有水壶的状态发生了改变,从而进行下一步的操作。

aio ( asynchronous i/o):异步非阻塞i/o模型。异步非阻塞与同步非阻塞的区别在哪里?异步非阻塞无需一个线程去轮询所有io操作的状态改变,在相应的状态改变后,系统会通知对应的线程来处理。对应到烧开水中就是,为每个水壶上面装了一个开关,水烧开之后,水壶会自动通知我水烧开了。

各自适用场景

bio方式适用于连接数目比较小且固定的架构,这种方式对服务器资源要求比较高,并发局限于应用中,jdk1.4以前的唯一选择,但程序直观简单易理解。

nio方式适用于连接数目多且连接比较短(轻操作)的架构,比如聊天服务器,并发局限于应用中,编程比较复杂,jdk1.4开始支持。

aio方式适用于连接数目多且连接比较长(重操作)的架构,比如相册服务器,充分调用os参与并发操作,编程比较复杂,jdk7开始支持。

使用方式

使用bio实现文件的读取和写入。


       //initializes the object
        user1 user = new user1();
        user.setname("hollis");
        user.setage(23);
        system.out.println(user);
        //write obj to file
        objectoutputstream oos = null;
        try {
            oos = new objectoutputstream(new fileoutputstream("tempfile"));
            oos.writeobject(user);
        } catch (ioexception e) {
            e.printstacktrace();
        } finally {
            ioutils.closequietly(oos);
        }
        //read obj from file
        file file = new file("tempfile");
        objectinputstream ois = null;
        try {
            ois = new objectinputstream(new fileinputstream(file));
            user1 newuser = (user1) ois.readobject();
            system.out.println(newuser);
        } catch (ioexception e) {
            e.printstacktrace();
        } catch (classnotfoundexception e) {
            e.printstacktrace();
        } finally {
            ioutils.closequietly(ois);
            try {
                fileutils.forcedelete(file);
            } catch (ioexception e) {
                e.printstacktrace();
            }
        }
       //initializes the object
        user1 user = new user1();
        user.setname("hollis");
        user.setage(23);
        system.out.println(user);
        //write obj to file
        objectoutputstream oos = null;
        try {
            oos = new objectoutputstream(new fileoutputstream("tempfile"));
            oos.writeobject(user);
        } catch (ioexception e) {
            e.printstacktrace();
        } finally {
            ioutils.closequietly(oos);
        }
        //read obj from file
        file file = new file("tempfile");
        objectinputstream ois = null;
        try {
            ois = new objectinputstream(new fileinputstream(file));
            user1 newuser = (user1) ois.readobject();
            system.out.println(newuser);
        } catch (ioexception e) {
            e.printstacktrace();
        } catch (classnotfoundexception e) {
            e.printstacktrace();
        } finally {
            ioutils.closequietly(ois);
            try {
                fileutils.forcedelete(file);
            } catch (ioexception e) {
                e.printstacktrace();
            }
        }

使用nio实现文件的读取和写入。


static void readnio() {
		string pathname = "c:\\users\\adew\\desktop\\jd-gui.cfg";
		fileinputstream fin = null;
		try {
			fin = new fileinputstream(new file(pathname));
			filechannel channel = fin.getchannel();
			int capacity = 100;// 字节
			bytebuffer bf = bytebuffer.allocate(capacity);
			system.out.println("限制是:"   bf.limit()   "容量是:"   bf.capacity()
					  "位置是:"   bf.position());
			int length = -1;
			while ((length = channel.read(bf)) != -1) {
				/*
				 * 注意,读取后,将位置置为0,将limit置为容量, 以备下次读入到字节缓冲中,从0开始存储
				 */
				bf.clear();
				byte[] bytes = bf.array();
				system.out.write(bytes, 0, length);
				system.out.println();
				system.out.println("限制是:"   bf.limit()   "容量是:"   bf.capacity()
						  "位置是:"   bf.position());
			}
			channel.close();
		} catch (filenotfoundexception e) {
			e.printstacktrace();
		} catch (ioexception e) {
			e.printstacktrace();
		} finally {
			if (fin != null) {
				try {
					fin.close();
				} catch (ioexception e) {
					e.printstacktrace();
				}
			}
		}
	}
	static void writenio() {
		string filename = "out.txt";
		fileoutputstream fos = null;
		try {
			fos = new fileoutputstream(new file(filename));
			filechannel channel = fos.getchannel();
			bytebuffer src = charset.forname("utf8").encode("你好你好你好你好你好");
			// 字节缓冲的容量和limit会随着数据长度变化,不是固定不变的
			system.out.println("初始化容量和limit:"   src.capacity()   ","
					  src.limit());
			int length = 0;
			while ((length = channel.write(src)) != 0) {
				/*
				 * 注意,这里不需要clear,将缓冲中的数据写入到通道中后 第二次接着上一次的顺序往下读
				 */
				system.out.println("写入长度:"   length);
			}
		} catch (filenotfoundexception e) {
			e.printstacktrace();
		} catch (ioexception e) {
			e.printstacktrace();
		} finally {
			if (fos != null) {
				try {
					fos.close();
				} catch (ioexception e) {
					e.printstacktrace();
				}
			}
		}
	}

使用aio实现文件的读取和写入

public class readfromfile {
  public static void main(string[] args) throws exception {
    path file = paths.get("/usr/a.txt");
    asynchronousfilechannel channel = asynchronousfilechannel.open(file);
    bytebuffer buffer = bytebuffer.allocate(100_000);
    future result = channel.read(buffer, 0);
    while (!result.isdone()) {
      profitcalculator.calculatetax();
    }
    integer bytesread = result.get();
    system.out.println("bytes read ["   bytesread   "]");
  }
}
class profitcalculator {
  public profitcalculator() {
  }
  public static void calculatetax() {
  }
}
public class writetofile {
  public static void main(string[] args) throws exception {
    asynchronousfilechannel filechannel = asynchronousfilechannel.open(
        paths.get("/asynchronous.txt"), standardopenoption.read,
        standardopenoption.write, standardopenoption.create);
    completionhandler handler = new completionhandler() {
      @override
      public void completed(integer result, object attachment) {
        system.out.println("attachment: "   attachment   " "   result
              " bytes written");
        system.out.println("completionhandler thread id: "
              thread.currentthread().getid());
      }
      @override
      public void failed(throwable e, object attachment) {
        system.err.println("attachment: "   attachment   " failed with:");
        e.printstacktrace();
      }
    };
    system.out.println("main thread id: "   thread.currentthread().getid());
    filechannel.write(bytebuffer.wrap("sample".getbytes()), 0, "first write",
        handler);
    filechannel.write(bytebuffer.wrap("box".getbytes()), 0, "second write",
        handler);
  }
}
网站地图