What's the quickest and most efficient way of reading the last line of text from a [very, very large] file in Java?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Apache Commons has an implementation using RandomAccessFile.
It's called ReversedLinesFileReader.