我无法在 java 中的 txt 文件中写多行
I can't write on multiple lines in a txt file in java
所以我正在尝试在一个文本文件中写入,没有什么太复杂的,但出于某种原因,我想添加的新文本不会改变行,它一直在同一行上,我可以弄清楚为什么。不相关的部分正在评论中,请不要担心。
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;
import java.io.File;
import java.io.IOException;
import java.io.FileWriter;
public class Main {
public static void main( String args[]) {
int a = 32;
int b=12;
int c=33;
List<Integer> myList = new ArrayList();
myList.add(a);
myList.add(b);
myList.add(c);
/* for(int s:myList)
{
System.out.println(s);
}
*/
//Om ar= new Om("Alex",21,185);
//System.out.println(ar);
try{
File myObj = new File("filename.txt");
if(myObj.createNewFile()){
System.out.println("File created " + myObj.getName());
}
else
{
System.out.println("File already exists");
}
}
catch (IOException e)
{
System.out.println("An error has occurred");
e.printStackTrace();
}
try {
FileWriter myWriter = new FileWriter("filename.txt");
for(int i=1;i<10;i++)
{
myWriter.append("This is a new file, nothing sus here."+i + " ");
}
myWriter.close();
System.out.println("Successfully wrote to the file.");
} catch (IOException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
- 将您的
FileWriter
包裹在 BufferedWriter
中以提高写入文件的效率。
- 然后可以根据需要使用BufferedWriter的
newLine()
方法在文件中添加一个换行符String。 newLine()
方法将为您当前的平台写出适当的字符串。
所以我正在尝试在一个文本文件中写入,没有什么太复杂的,但出于某种原因,我想添加的新文本不会改变行,它一直在同一行上,我可以弄清楚为什么。不相关的部分正在评论中,请不要担心。
import java.util.List;
import java.util.ArrayList;
import java.util.Collections;
import java.io.File;
import java.io.IOException;
import java.io.FileWriter;
public class Main {
public static void main( String args[]) {
int a = 32;
int b=12;
int c=33;
List<Integer> myList = new ArrayList();
myList.add(a);
myList.add(b);
myList.add(c);
/* for(int s:myList)
{
System.out.println(s);
}
*/
//Om ar= new Om("Alex",21,185);
//System.out.println(ar);
try{
File myObj = new File("filename.txt");
if(myObj.createNewFile()){
System.out.println("File created " + myObj.getName());
}
else
{
System.out.println("File already exists");
}
}
catch (IOException e)
{
System.out.println("An error has occurred");
e.printStackTrace();
}
try {
FileWriter myWriter = new FileWriter("filename.txt");
for(int i=1;i<10;i++)
{
myWriter.append("This is a new file, nothing sus here."+i + " ");
}
myWriter.close();
System.out.println("Successfully wrote to the file.");
} catch (IOException e) {
System.out.println("An error occurred.");
e.printStackTrace();
}
}
}
- 将您的
FileWriter
包裹在BufferedWriter
中以提高写入文件的效率。 - 然后可以根据需要使用BufferedWriter的
newLine()
方法在文件中添加一个换行符String。newLine()
方法将为您当前的平台写出适当的字符串。