من از قابلیت های NIO 2 برای پردازش فایل در جاوا 7 استفاده کردم و کدم بصورت زیر شد:
List<String> lines = null;
try {
lines = Files.readAllLines(Paths.get("test.txt"), Charset.defaultCharset());
int seq = Integer.parseInt(lines.get(0));
String newSeq = String.valueOf(seq + 1);
Files.write(Paths.get("test.txt"), newSeq.getBytes());
} catch (IOException e) {
e.printStackTrace();
}