使用 groovy 访问 Windows 共享
嘿,我正在尝试访问 Windows 共享以获取给定的 XML 文件,我需要对其进行一些处理。 我正在尝试使用将在soapui中运行的groovy脚本来执行此操作,但我看不到如何在不添加JCIFS或其他外部库之类的内容的情况下访问共享。 无论如何,是否可以在没有外部库的情况下访问共享,如果没有,有人可以向我指出如何访问共享的示例。
Hey i'm trying to access a windows share to get a given XML file that I need to do some work on.
I'm trying to do this with a groovy script that will run in soapui, but i can't see how I can access the share without adding something like JCIFS or another external lib.
Is there anyway to access the share without external libs and if not could somebody point me to an example of how you access the share.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我已经尝试过 jcifs 了,这有效,但不是最好的。
但我们可以通过普通的 Windows 共享访问来访问。
因此,如果我使用:“
\\\\\\c\$\\folder
” 我可以访问我的文件。Okay I have tried with the jcifs and that works, but would not be the best.
But we can access with just a normal windows share access.
So if i use: "
\\\\<ip>\\c\$\\folder
" i can get to my files.