am reading xml file in List in such a way:
List<String> file_lines = Files.readAllLines(path);
My file has 317 lines, but in list appears 316. Main problem is that lat one is empty (just carriage return probably) How can I deal with this? I need precisely every line of file, because am calculating crc32 checksum for file validation.
No comments:
Post a Comment