for (int i = 1; i <= x; i++)这个循环中为什么第一次不执行String s = sc.nextLine();
public class test2 {public static void main(String[] args) throws IOException {
// 创建ArrayList集合对象
ArrayList<String> array = new ArrayList<String>();
// 创建集合元素
Scanner sc = new Scanner(System.in);
System.out.println("请输入集合中元素个数");
int x = sc.nextInt();
for (int i = 1; i <= x; i++) {
System.out.println("请输入集合中第" + i + "个元素");
String s = sc.nextLine();
// 添加到集合中
array.add(s);
}
// 封装目的地
BufferedWriter fw = new BufferedWriter(new FileWriter("test2.txt") );
for (String s1 : array) {
fw.write(s1+"\r\n");
}
// 关闭资源
fw.close();
}
运行结果:
请输入集合中元素个数
3
请输入集合中第1个元素
请输入集合中第2个元素
nihao
请输入集合中第3个元素
哈哈