gpt4 book ai didi

java - 输出数组列表的内容

转载 作者:行者123 更新时间:2023-12-01 06:41:02 24 4
gpt4 key购买 nike

如何将数组列表中的值返回到屏幕上,例如System.out.println

我正在考虑一个 for 循环,例如

for (String s : list)
{
System.out.println(s);
}

但它提示它无法将对象转换为字符串 - 如何将其转换为字符串?

代码:

public static void GetStatsProc(String operation)
{
try {
Process p=Runtime.getRuntime().exec(operation);
p.waitFor();
BufferedReader reader=new BufferedReader(new InputStreamReader(p.getInputStream()));
String line=reader.readLine();
while(line!=null)
{
// Add all lines into an array
ArrayList list = new ArrayList();
list.add(line);
System.out.println(line);
line=reader.readLine();
}

}
catch(IOException e1) {}
catch(InterruptedException e2) {}
}

最佳答案

如果您的问题是在 for 循环中打印,那么应该声明您的列表

ArrayList<String> list = new ArrayList<String>();

for 循环需要看起来像

for (String s : list)
{
System.out.println(s);
}

关于java - 输出数组列表的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9098796/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com