Pulling values from a Java Properties file in order?

前端 未结 15 763
庸人自扰
庸人自扰 2020-12-02 18:32

I have a properties file where the order of the values is important. I want to be able to iterate through the properties file and output the values based on the order of the

15条回答
  •  醉酒成梦
    2020-12-02 19:27

    You must override also keySet() if you want to export Properties as XML:

    public Set keySet() { return keys; }

    提交回复
    热议问题