Groovy: एक स्ट्रिंग में अक्षरों की श्रृंखला बदलें और एक फ़ाइल से Properties लोड करें
Publié le 17 July 2019
यहाँ एक काम करने वाला ग्रूवी कोड का टुकड़ा है,
एक String में एक अक्षर अनुक्रम के सभी उदाहरणों को बदलने के लिए
और एक .properties फ़ाइल को एक properties ऑब्जेक्ट में लोड करें।
एक स्ट्रिंग में कमांड निष्पादित करें।
replaceTextinFile.groovy
#!/usr/bin/env groovy
println System.getProperty("user.home")
static String getSeparator_() {
System.getProperty("file.separator")
}
String separator = separator_
String path = System.getProperty("user.home")
.concat("${separator}.gradle" +
separator +
"gradle.properties")
File propertiesFile = new File(path)
assert propertiesFile.exists() && !propertiesFile.directory
Properties gradleProperties = new Properties()
propertiesFile.withInputStream { InputStream it ->
gradleProperties.load(it)
}
String user_name = gradleProperties.getProperty("user_name")
String text
String resultText
text = new File("${System.getProperty("user.home")}" +
separator +
"src" +
separator +
"cheroliv.github.io" +
separator +
"src" +
separator +
"main" +
separator +
"resources" +
separator +
"eco_space.txt").text
String to = separator +
"media" +
separator +
"${user_name}" +
separator +
"320" +
separator +
"videoCours" +
separator
String from = "${System.getProperty("user.home")}" +
separator +
"p2p" +
separator
resultText = text.replace(to, from)
println resultText
//execute command line in a string
println "rsync -avr ${resultText} ${to}".execute().text