Displaying differences for changeset |
@@ -1135,7 +1135,7 @@ |
while(iterate.hasNext()){ |
String currentLine = (String) iterate.next(); |
- print_line.printf("%s" + "%n", currentLine); |
+ print_line.printf("%s" + "\r\n", currentLine); |
} |
print_line.close(); |
} |
@@ -1154,7 +1154,7 @@ |
PrintWriter print_line = new PrintWriter(write); |
//Output data to text file |
- print_line.printf("%s" + "%n", data); |
+ print_line.printf("%s" + "\r\n", data); |
print_line.close(); |
} |
@@ -213,7 +213,7 @@ |
//Output data to text file |
for(int i = 0; i < textData.size(); i++) { |
- print_line.printf("%s" + "%n", textData.get(i)); |
+ print_line.printf("%s" + "\r\n", textData.get(i)); |
} |
print_line.close(); |
System.out.println("Text File located at:\t" + path); |