用groovy用Jenkins编写INI文件

nukf8bse  于 2022-09-21  发布在  Jenkins
关注(0)|答案(1)|浏览(259)

我正在尝试通过Jenkins groovy脚本创建INI文件。有没有什么直接的方法来创建INI文件,就像我们为YAML(WriteYaml)和JSON(WriteJSON)所做的那样?

wvyml7n5

wvyml7n51#

您可以尝试使用ini4j库。下面是一个包含读写示例的article。在Java中,它看起来是这样的:

public class Index {

    public static void main(String[] args) {
        try {
            Wini ini = new Wini(new File("C:\Users\sdkca\Desktop\myinifile.ini"));
            ini.put("block_name", "property_name", "value");
            ini.put("block_name", "property_name_2", 45.6);
            ini.store();
        // To catch basically any error related to writing to the file
        // (The system cannot find the file specified)
        } catch(Exception e) {
            System.err.println(e.getMessage());
        }
    }
}

相关问题