gpt4 book ai didi

java - 使用java中的比较器对文件内容进行排序

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

我已经通过 ArrayList 添加了文件的内容,现在我需要对这些内容进行排序,然后将它们放回文件中。我该怎么做?

package training;
import java.io.*;
import java.util.Collections;
/* method to create a file, store the contents of list and write read them back
*/

public class FileCreation implements Serializable {
public void filesPatient(Person p) throws ClassNotFoundException {

String Filename = "PatientDetails.txt";
try {
ObjectOutputStream os = new ObjectOutputStream(
new FileOutputStream(Filename));
os.writeObject(p);
os.close();
} catch (Exception e) {

}
System.out.println("Done wRiting");
try {
ObjectInputStream is = new ObjectInputStream(new FileInputStream(
Filename));
Person l = (Person) is.readObject();
System.out.println("*****************Patient Details*************");
System.out.println("Name : " + l.getName() + "\nID: " + l.getId()
+ "\nGender: " + l.getGender());
System.out.println();

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block

e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}

请帮我找到合适的方法。

最佳答案

如果您想按默认的字符串值排序对它们进行排序,可以使用 Collections.sort 方法:

Collections.sort( list );

否则,您可以编写自己的比较器来执行您自己的特定排序逻辑。请查看这篇文章以获取更多示例/说明:

How to sort a Collection<T>?

编辑

我相信您正在寻找这样的东西。请注意,为了对 ArrayList 进行排序,您必须将整个列表加载到内存中,然后对其进行排序,然后将整个列表写入文件,因此请确保您的列表不会太长并且适合内存。

ArrayList<Person> arrlist = new ArrayList<Person>(2);
while(more Person data exists) { // Replace this with however you are loading your data
p = new Person();
p.getdata();
arrlist.add(p);
}

Collections.sort(arrList); // now your list is sorted

for(Person p : arrList) {
fc.filesPatient(p); // add all your patients to file, from your list which is now sorted
}

关于java - 使用java中的比较器对文件内容进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27168077/

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