如何在java中对属性进行排序?
2022-09-02 00:00:43
我有一个对象,有时我需要添加其他对象。Properties
Properties
Properties myBasicProps = this.getClass.getResourceAsStream(MY_PROPS_PATH);
...
Properties otherProps = new Properties();
otherProps.load(new StringReader(tempPropsString)); //tempPropsString contains my temporary properties
myBasicProps.putAll(otherProps);
我想在此之后进行排序。我不想获取所有键和值,对它们进行排序,然后将其全部放入新对象。有没有更好的方法?myBasicProps
Collections.sort()