如何克服命令行字符串限制?

发布于 2025-01-02 07:06:43 字数 289 浏览 2 评论 0原文

命令行有字符串限制,如 msdn此处

我尝试了 msdn 上建议的解决方法,将参数写入文件。但是,我无法从文件传递参数。

编辑 : 我需要运行 bcp 实用程序,以便将(大量)数据导出到平面文件。

Command line has a string limitation as mentioned on msdn and here.

I tried the workaround suggested on msdn, writing the arguments to a file. But, I am unable to pass the arguments from a file.

Edit :
I need to run the bcp utility, in order to export (huge) data to flat files.

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

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

发布评论

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

评论(1

百善笑为先 2025-01-09 07:06:43

您正在运行的可执行文件必须明确支持这一点。例如,C# 编译器允许您

csc @foo

从名为 foo 的文件中加载一些选项。我不相信如果没有您正在运行的命令的支持,这可以轻易被“修复”...您可以编写一个小的包装程序来加载文件并启动进程本身。但是,您必须小心安全处理、传播控制台输入和输出等。如果您控制有问题的应用程序,那么最好直接提供支持。

The executable you're running has to support this explicitly. For example, the C# compiler allows you to write

csc @foo

to load some options from a file called foo. I don't believe this can easily be "fixed" without support from the command you're running though... it's possible that you could write a small wrapper program which loaded the file and started the process itself. However, you'd have to be careful in terms of security handles, propagating console input and output etc. If you're in control of the application in question, you'd be much better off putting support in directly.

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