我有一个任务:编写一个程序,该程序读取一个文件并将文件的副本写入另一个插入了行号的文件。我不确定在“for(int i =0; i < lines.length; i++)”部分的代码末尾要做什么。我需要为“行”部分做什么以及如何添加行号?谢谢
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Scanner;
public class Question43
{
public static void main(String[] args) throws IOException
{
Scanner fileIn = new Scanner(new File("Chapter 11Assign43.txt") );
FileWriter fileOut = new FileWriter("FileOut.txt");
PrintWriter output = new PrintWriter(fileOut);
String []array = new String[10];
int indx = 0;
while(fileIn.hasNext( ) )
{
array[indx] = fileIn.nextLine( );
}
fileIn.close();
int num = 1;
for(int i =0; i < lines.length; i++)
{
output.println(num+"\t"+array[i]);
}
}
}