Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从文件中读取属性对象,但是我需要切换键和值对,即我需要键成为属性值,反之亦然。我也不能只在我正在阅读的文件上更改它。有什么想法可以做到这一点吗?
谢谢
您可以创建第二个Properties对象,遍历您刚刚阅读的所有内容,调用put(entry.getValue(), entry.getKey())并拥有它。
Properties
put(entry.getValue(), entry.getKey())
寻找这个Properties.store()