如何在 QuickBuild 中使用 Groovy 从文件读取字符串

发布于 2024-08-13 09:10:21 字数 203 浏览 5 评论 0原文

我是 QuickBuild 的新手。

我在文本文件中存储了许多不同的版本。
要开始构建过程,我需要从文本文件中检索版本并将它们传递给 shell 脚本。

我的问题是:如何使用 QuickBuild 环境读取文件的内容?
我知道它支持 Groovy、MVEL 和 OGNL 语言,但我对其中任何一种都不熟悉。

提前致谢。

I am new to QuickBuild.

I have a lot of different versions stored in text files.
To start the build process, I need to retrieve the versions from the text files and pass them to a shell script.

My question is: How do I read the contents of a file using the QuickBuild environment?
I know that it supports Groovy, MVEL and OGNL languages but I'm not familiar with any of them.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

逆流 2024-08-20 09:10:21

我找到了解决方案:)

${groovy: str = new java.io.File("[PATH_TO]/file.txt").text}

或者

${groovy: str = new java.io.File("[PATH_TO]/file.txt").text
str.split("[\\r\\n]")[0] } 

只阅读第一行。

谢谢我:)

I found the solution :)

${groovy: str = new java.io.File("[PATH_TO]/file.txt").text}

or

${groovy: str = new java.io.File("[PATH_TO]/file.txt").text
str.split("[\\r\\n]")[0] } 

to read the first line only.

Thanks to me :)

小红帽 2024-08-20 09:10:21

一个稍微较短的版本,用于仅读取第一行(不对 EOL 字符做出任何假设):

${groovy: str = new File("[PATH_TO]/file.txt").readLines()[0] }

A slightly shorter version for reading only the first line (which doesn't make any assumption about the EOL character):

${groovy: str = new File("[PATH_TO]/file.txt").readLines()[0] }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文