gpt4 book ai didi

JAVA整数问题

转载 作者:行者123 更新时间:2023-12-01 06:45:57 26 4
gpt4 key购买 nike

我编写了一个排序算法(冒泡),并且使用了 10000 个唯一值,即

int BubArray[] = new int[]{#10000 unique unsorted values#};

我想知道如何将整数放入文件中并调用该文件,而不是代码中的 10000 个整数。

此外,它们会采用哪种格式(带逗号、空格?)我不确定。

如有任何帮助,我们将不胜感激,谢谢。

最佳答案

这不是正确答案,只是提示如何使用文件,但您可以根据需要修改代码并使其可用。

    try {

String str;
String[] temp;

BufferedReader br = new BufferedReader(new FileReader("your filepath"));

while ((str= br.readLine()) != null) {
temp = str.split(";"); // seperator words bye;
System.out.println(str);
for(int i = 0; i<temp.lenght; i++)
System.out.println(temp[i]);
}

} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (br != null)br.close();
} catch (IOException ex) {
ex.printStackTrace();
}
}

关于JAVA整数问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13759713/

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