Groovy 文件上传并执行

发布于 2024-10-25 04:22:06 字数 132 浏览 1 评论 0原文

我想从我的应用程序上传查询工具页面中的文件。 我将所有 SQL 脚本保存在项目文件夹中,我需要将这些脚本一一上传并执行。对于我的自动化测试脚本 并且文件上传是依赖的。

请给我一些如何实现这一目标的想法。

谢谢, 阿什温

I want to upload the file in the Query tool page from my application .
I saved all the SQL scripts in my project's folder i need to upload those scripts 1 by 1 and execute it. For my automation test script
And the file uploading is dependent.

please give me some idea's how to achieve this.

Thanks,
Ashwin

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

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

发布评论

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

评论(1

画离情绘悲伤 2024-11-01 04:22:06

您没有向任何人提供足够的信息来真正帮助您。您要将文件上传到哪里?您已经尝试过什么方法?为什么没有效果?

假设客户端和服务器是远程的,您可以使用 HTTP 上传文件。 Groovy 和 Java 中有许多可用的 HTTP 库可供您使用。示例包括可在客户端使用的 HttpBuilderCommons FileUpload 在服务器端。

为了执行 SQL,标准 Groovy 库中的 groovy.sql.Sql 类应该会有所帮助。

You haven't given enough information for anyone to really help you. Where are you uploading the file to? What approach have you already tried? Why didn't it work?

Assuming the client and the server are remote, you could upload the file using HTTP. There are many HTTP libraries available in Groovy and Java that you could use. Examples include HttpBuilder that could be used on the client-side and Commons FileUpload on the server side.

For executing the SQL, the groovy.sql.Sql class from the standard Groovy libraries should help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文