I want to read the whole text of a file and then split it according to specific delimiters. How could I do so in Java?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
Read the contents. Choose a delimiter up to which you want to check each line/word or phrase for the splitting. Have a switch case setup. Whatever content you find based on the switch case you can perform actions. Say you can write in different text files from different cases. |
|||
|
|