我需要帮助在 groovy 中逃脱
我在文本文件中有一些字符串,例如#$commonTomcat620.max_threads$# 这些值我必须在运行时替换。
我使用了以下代码:
def str = "#\$commonTomcat620.max_threads\$#"
fileContents = fileContents.replaceAll("${str}","100");
此 str 在值中打印为 #$commonTomcat620.max_threads$#。但不替换文件。我试过 withOut #$ 。这是工作。
谢谢。