Uses of Package
com.github.dagnelies.filemap
-
Classes in com.github.dagnelies.filemap used by com.github.dagnelies.filemap Class Description AbstractFileMap This abstract class is a utility to easily manipulate lines in a random access file and converting text lines into key/value format and vice-versa.AbstractFileMap.LineEntry BufferedRandomAccessFile In core Java, you have the choice between: - RandomAccessFile: random access but slow (unbuffered) - BufferedInputStream/Reader: fast (buffered) but no random access Sadly, both are incompatible and there is no meaningful way to combine them.FileMap