在java中将文件放入链表中
我需要帮助将文件中的字符串放入列表中(在 Java 中)。这是我的代码:
import java.util.Scanner;
import java.io.*;
public class MyProgram7{
public static void main(String[] args){
//Declare Variables
File file = new File ("data7_names_Fall_2011.txt");
Scanner input = new Scanner(file);
Prog7Methods pm = new Prog7Methods();
MyList<String> list = new MyArrayList<String>();
}
}
我想将每个名称放入列表中,以便我可以追加和插入等。这是我的文件:
Lee Keith Austin Kacie Jason Sherri Jordan Corey Reginald Brian Taray 克里斯托弗·兰迪·亨利·杰里米·罗伯特·约书亚·罗伯特·艾琳 Cassandra Albert Russell Ethan Cameron Tyler Alex Kentrell rederic
我知道我可能需要使用 for 循环,但我就是想不出办法来解决这个问题......
I need help with putting strings from a file into a list (in Java). Here is my code:
import java.util.Scanner;
import java.io.*;
public class MyProgram7{
public static void main(String[] args){
//Declare Variables
File file = new File ("data7_names_Fall_2011.txt");
Scanner input = new Scanner(file);
Prog7Methods pm = new Prog7Methods();
MyList<String> list = new MyArrayList<String>();
}
}
I want to put each name in the list, so that I can append and insert and such. Here is my file:
Lee Keith Austin Kacie Jason Sherri Jordan Corey Reginald Brian Taray
Christopher Randy Henry Jeremy Robert Joshua Robert Eileen
Cassandra Albert Russell Ethan Cameron Tyler Alex Kentrell rederic
I know I probably need to use a for loop but I just cannot figure out a way to go about this...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)