前言
NIO(非阻塞IO)是在原来的IO流(BIO:Block IO)上做了模式上的改进(还有个AIO:异步IO),运用了Reactor模式,或者说是Observer模式为我们监察I/O端口,如果有内容进来,会自动通知我们,就不必开启多个线程死等,改进了原IO流的读取效率,提供了有如"文件内容内存映射","IO非阻塞读取"接口,提高在多线程环境下,特别是高并发度系统中的效率.
数据传输
传统IO以流传输;
Buffer等改进以多个字节或字符传输,有个缓存;
新IO以块传输;
题记
因为最近任务也有牵涉到IO流处理,并之前测试出FileWrite写,BufferReader读效率最好,恰好坛子里有人放出了自己的FileUtil,被坛友提出质疑为什么不用NIO,于是我去google相关资料,发现这方面的例子并不多;
实例:
// 文件映射内存
import java.io.*;
import java.nio.*;
import java.nio.channels.*;
import java.nio.charset.*;
import java.util.regex.*;
public class Grep {
// Charset and decoder for ISO-8859-15
private static Charset charset = Charset.forName("ISO-8859-15");
private static CharsetDecoder decoder = charset.newDecoder();
// Pattern used to parse lines
private static Pattern linePattern
= Pattern.compile(".*\r?\n");
// The input pattern that we're looking for
private static Pattern pattern;
// Compile the pattern from the command line
//
private static void compile(String pat) {
try {
pattern = Pattern.compile(pat);
} catch (PatternSyntaxException x) {
System.err.println(x.getMessage());
System.exit(1);
}
}
// Use the linePattern to break the given CharBuffer into lines, applying
// the input pattern to each line to see if we have a match
//
private static void grep(File f, CharBuffer cb) {
Matcher lm = linePattern.matcher(cb); // Line matcher
Matcher pm = null; // Pattern matcher
int lines = 0;
while (lm.find()) {
lines++;
CharSequence cs = lm.group(); // The current line
if (pm == null)
pm = pattern.matcher(cs);
else
pm.reset(cs);
if (pm.find())
System.out.print(f + ":" + lines + ":" + cs);
if (lm.end() == cb.limit())
break;
}
}
// Search for occurrences of the input pattern in the given file
//
private static void grep(File f) throws IOException {
// Open the file and then get a channel from the stream
FileInputStream fis = new FileInputStream(f);
FileChannel fc = fis.getChannel();
// Get the file's size and then map it into memory
int sz = (int)fc.size();
MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, sz);
// Decode the file into a char buffer
CharBuffer cb = decoder.decode(bb);
// Perform the search
grep(f, cb);
// Close the channel and the stream
fc.close();
}
public static void main(String[] args) {
if (args.length < 2) {
System.err.println("Usage: java Grep pattern file...");
return;
}
compile(args[0]);
for (int i = 1; i < args.length; i++) {
File f = new File(args[i]);
try {
grep(f);
} catch (IOException x) {
System.err.println(f + ": " + x);
}
}
}
}
写IO操作(简单的写文件流,NIO更适合些SOCKET)
import java.io.*;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
public class WriteTest {
public WriteTest() {
}
public static void main(String[] args) {
FileChannel outputChannel = null;
try{ File file = new File("C:/add1.txt");
FileOutputStream outputFile = null;
long begin4 = System.currentTimeMillis();
outputFile = new FileOutputStream(file);
outputChannel = outputFile.getChannel();
ByteBuffer buff = ByteBuffer.allocate(1024);
for (int i = 0; i < count; i++) {
buff.clear();
buff.put("~!@#$%^&*()|\r\n".getBytes());
buff.flip();
try {
outputChannel.write(buff);
} catch (IOException ioe) {
ioe.printStackTrace(System.err);
}
}
long end4 = System.currentTimeMillis();
System.out.println("NIO CharBuffer执行耗时:" + (end4 - begin4) + " 豪秒");
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
outputChannel.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
分享到:
相关推荐
In this book, you'll learn about classic I/O APIs (File, RandomAccessFile, the stream classes and related types, and the reader/writer classes). Next, you'll learn about NIO's buffer, channel, ...
NIO中的Channel类似于传统IO中的Stream,但提供了更高效的处理方式。 - **缓冲区(Buffer)**:用于存储待处理的数据。在读取或写入数据时,都需要通过Buffer来操作。Buffer提供了一种结构化的数据访问方式,并且可以...
在Java中,标准IO基于流(Stream)的概念,分为字节流和字符流两大类。字节流如`InputStream`和`OutputStream`处理原始字节数据,一次传输一个字节;字符流如`Reader`和`Writer`处理Unicode字符,一次传输一个字符。...
例如,Java的`java.nio`包提供了缓冲区支持。 4. **断点续传**:如果需要中断或暂停下载,可能会用到文件指针保持当前位置的技术,以便下次从上次中断的地方继续下载。 5. **多线程下载**:为了加速下载,可以将大...
《Doug Lea Scalable IO in Java》是一本深入探讨Java NIO(非阻塞I/O)和反应器设计模式的经典著作。作者Doug Lea是Java并发领域的权威,他对Java性能优化和系统设计有着深刻的洞察力。这本书对于理解如何在Java...
通过学习《Scalable IO in Java》,开发者能够掌握如何在Java应用程序中有效地利用NIO进行高性能的I/O操作,这对于构建大型、高并发的网络服务,如Web服务器、数据库服务器等,具有重要的指导意义。不过,由于书籍为...
传统的Java IO基于流(Stream)模型,依赖于阻塞IO,这种方式在处理单个连接时效率较高,但在面对大量并发连接时,由于其同步和阻塞的特性,性能会显著下降。 Doug Lea在书中探讨了Java的NIO(New IO)框架,它是对...
总结来说,Scalable IO in Java涉及多个层次,从基础IO流的优化到NIO和NIO.2的使用,再到并发策略和流式API的集成,这些都是提升Java应用程序在处理大量数据时性能和可扩展性的关键要素。理解并熟练运用这些技术,...
9. **Java 8及更高版本的新特性**:第七版会涵盖Java 8以来的新特性,如Lambda表达式、函数式接口、Stream API、Optional类以及默认方法等。 10. **实战应用与最佳实践**:书中不仅理论知识丰富,还包含了许多实际...
13. **Stream API**:Java 8中新增,提供了处理集合的高效且易读的途径,支持并行流处理,增强了集合操作的能力。 《Thinking in Java》不仅涵盖了这些基本知识点,还深入探讨了许多高级主题,如设计模式、并发编程...
此外,书中的Java I/O系统部分讲解了文件操作、流的概念、序列化以及NIO(非阻塞I/O)框架,这对于处理数据输入输出和网络通信至关重要。XML处理和JSON解析也是现代Java开发中常见的任务,书中也对此提供了指导。 ...
在传统的Java IO模型中,我们通常使用BufferedReader和PrintWriter等类进行读写操作,而这些类基于流(Stream)模型,它们是阻塞的,即一个线程在等待数据读取或写入完成时会被阻塞。相比之下,NIO库提供了一种非阻塞I...
7. **函数式编程**:Java 8引入了Lambda表达式和Stream API,让Java具备了函数式编程的特点。习题可能包含使用这些新特性进行编程的练习。 8. **泛型**:泛型增强了类型安全,允许在编译时检查类型。习题会涉及泛型...
还讨论了集合的迭代器、泛型以及Java 8引入的Stream API,这些都是处理和操作集合数据的重要工具。 4. **多线程**:讲解线程的创建、同步、通信,包括synchronized关键字、wait()和notify()方法,以及ThreadLocal、...
还涉及到了迭代器、泛型和集合的高级主题,如并发修改异常(CMException)和流(Stream)。 4. **多线程**:讲解了Java的并发编程,包括线程的创建、同步机制(synchronized关键字、wait()、notify()和notifyAll()方法...
7. **输入/输出(I/O)与NIO**:讲解Java的I/O流体系,包括文件操作、网络通信和新推出的Non-blocking I/O(NIO)。 8. **反射**:Java的反射机制允许程序在运行时动态地获取类的信息并调用其方法,是实现元编程的...
Java的I/O流体系是其强大的功能之一,分为字节流(Byte Stream)和字符流(Character Stream),并且有输入流(InputStream/Reader)和输出流(OutputStream/Writer)之分。关键知识点包括: 1. **流的分类**:根据...
Java提供了丰富的类库来支持这些操作,例如FileInputStream和FileOutputStream用于文件操作,SocketInputStream和SocketOutputStream用于网络通信,System.in和System.out分别代表标准输入和标准输出。 IO流还有流...