Skip to content
Advertisement

Constructor that receives TXT files to read and store them

Firstly i already have this code:

JavaScript

And i need to create a class called Text with gonna contain the code who will open and read the TXT file. But, how i build the constructor to receive the directory with gonna contains the 3 TXT files, and at the same time, create the archives and read them? The files will be stored here:

JavaScript

Advertisement

Answer

Say you have 3 text files text1.txt, text2.txt, and text3.txt with the following contents:

text1.txt:

JavaScript

text2.txt:

JavaScript

text3.txt:

JavaScript

You could make Text implement Comparable<Text>:

JavaScript

Example Usage:

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement