Groovy 文件上传并执行
我想从我的应用程序上传查询工具页面中的文件。 我将所有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有向任何人提供足够的信息来真正帮助您。您要将文件上传到哪里?您已经尝试过什么方法?为什么没有效果?
假设客户端和服务器是远程的,您可以使用 HTTP 上传文件。 Groovy 和 Java 中有许多可用的 HTTP 库可供您使用。示例包括可在客户端使用的 HttpBuilder 和 Commons 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.