Java7のNIO2を使った簡単なファイル読み書き例。 package example; import java.io.IOException; import java.nio.charset.Charset; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.StandardOpenOption; import java.util.List; public class Nio2Example { static final Charset utf8 = Charset.forName("UTF-8"); // NIO2でファイル読み込み public static List<String> read() throws IOExcept