Hey everyone! :)
I am trying to program a brief text adventure just for getting used to Java. Now what I want to do is: I've got large quantities of text outputs (descriptions, dialogues and so on), so I don't want to put all that text into my Java files. Of course what I first thought of is reading from a text file, but then I would need to know how to read only parts of the file. But only reading certain lines would make later changes to the text file almost impossible cause then I'd also have to change the line numbers everywhere. Now I am looking for a way to read parts of a file by index. Does anyone know a proper way of doing so? I've also thought of XML but I don't know if that would work and reading those files seems rather complicated...
I'd be really thankful for your help!
