[Solved] How can I read this unstructured flat file in Java?
Consider this file divided in middle present two record in same format, you need to design class that contains fields that you want to get from this file. After that you need to read List<String> fileLines = Files.readAllLines(Path pathToYourFile, Charset cs); and parse this file with help of regular expressions. To simplify this task you … Read more