I would like to remove an extra line at the front of the text file that's being created for some reason. Here's the code for what I'm doing:
String line;
while ((line = textReader.readLine()) != null) {
if (!line.contains("//")) textData.add(line);
Pattern pattern = Pattern.compile("//.*$", Pattern.DOTALL);
Matcher matcher = pattern.matcher(line);
line = matcher.replaceFirst("");
If I remove the if (!line.contains("//")) textData.add(line); then the lines are not being outputted. Here's what I use to invoke writing method:
WriteToFile filetoo = new WriteToFile("/Users/John/Desktop/newtext.txt", true);
filetoo.write(anyLines[i]);
I want to start from the very first line and start writing to the file. Here's what my file looks like:
................. // blank space (I want to get rid of this)
line 1
line 2
line 3
Though I want it to look like this:
line 1
line 2
line 3
Any suggestions?