Class FileLinesCollection
- All Implemented Interfaces:
Size64
,Iterable<MutableString>
,Collection<MutableString>
Collection
.
Warning: the lines returned by iterators generated by instances of this class
are not cacheable. The returned value is a MutableString
instance that is reused at each call, and that is modified by a call to
hasNext()
. Thus, for instance,
ObjectIterators.unwrap(fileLinesColletion.iterator());will not give the expected results. Use
allLines()
to get the big list of all lines (again, under the form of compact
MutableString
s). Note also that toString()
will return a
single string containing all file lines separated by the string associated with the system
property line.separator
.
An instance of this class allows to access the lines of a file as a Collection
.
Using direct access is strongly
discouraged (it will require a full scan of the file), but the iterator()
can be
fruitfully used to scan the file, and can be called any number of times, as it opens an
independent input stream at each call. For the same reason, the returned iterator type
(FileLinesCollection.FileLinesIterator
) is Closeable
, and
should be closed after usage.
Using a suitable constructor, it
is possible to specify that the file is compressed in gzip
format (in this case, it
will be opened using a GZIPInputStream
).
Note that the first call to size64()
will require a full file scan.
- Since:
- 2.0
- Author:
- Sebastiano Vigna
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Deprecated.Please useFileLinesMutableStringIterable.iterator(java.io.InputStream, java.nio.charset.Charset, Class)
; thezipped
option of this class can be simulated by passing aGZIPInputStream
as decompressor. -
Constructor Summary
ConstructorDescriptionFileLinesCollection
(CharSequence filename, String encoding) Deprecated.Creates a file-lines collection for the specified filename with the specified encoding.FileLinesCollection
(CharSequence filename, String encoding, boolean zipped) Deprecated.Creates a file-lines collection for the specified filename with the specified encoding, optionally assuming that the file is compressed usinggzip
format. -
Method Summary
Methods inherited from class java.util.AbstractCollection
add, addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
Constructor Details
-
FileLinesCollection
Deprecated.Creates a file-lines collection for the specified filename with the specified encoding.- Parameters:
filename
- a filename.encoding
- an encoding.
-
FileLinesCollection
Deprecated.Creates a file-lines collection for the specified filename with the specified encoding, optionally assuming that the file is compressed usinggzip
format.- Parameters:
filename
- a filename.encoding
- an encoding.zipped
- whetherfilename
is zipped.
-
-
Method Details
-
iterator
Deprecated.- Specified by:
iterator
in interfaceCollection<MutableString>
- Specified by:
iterator
in interfaceIterable<MutableString>
- Specified by:
iterator
in classAbstractCollection<MutableString>
-
size
Deprecated.- Specified by:
size
in interfaceCollection<MutableString>
- Specified by:
size
in interfaceSize64
- Specified by:
size
in classAbstractCollection<MutableString>
-
size64
public long size64()Deprecated. -
allLines
Deprecated.Returns all lines of the file wrapped by this file-lines collection.- Returns:
- all lines of the file wrapped by this file-lines collection.
-
toArray
Deprecated.- Specified by:
toArray
in interfaceCollection<MutableString>
- Overrides:
toArray
in classAbstractCollection<MutableString>
-
toArray
Deprecated.- Specified by:
toArray
in interfaceCollection<MutableString>
- Overrides:
toArray
in classAbstractCollection<MutableString>
-
toString
Deprecated.- Overrides:
toString
in classAbstractCollection<MutableString>
-
FileLinesMutableStringIterable
instead; thezipped
option of this class can be simulated by passing aGZIPInputStream
as decompressor.