I don't like to ask questions that have been answered a lot, but I kinda need to right now.
I'd like to have a method for a project to extract the content of a .txt file into a String variable (then manipulate the String). What I need is a clean and compact way to do that. I already know that the only 3 characters the String will be able to contain are "." "*" "\n" (or "\r\n" if the file had been created in Windows).
Basically I already created a class called TextFile which has a String variable and there is a method called importFile that takes a String as an argument (and that string is the path of the .txt file).
I know I will have to deal with exceptions and all but I'm not really at ease with that either.
Could you please help me?