- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于我在 Borland C++ Builder 4.0 中创建的程序,我希望能够创建一个可以设置批处理脚本的版本。批处理 srcipt 将调用我的 .exe(不启动主窗体窗口),这将导致使用批处理文件中指定的输入来执行我的程序的主要过程。生成输出后,程序将关闭。
批处理脚本的前三个参数将指定三个主要输入文件(否则用按钮加载的文件)的位置,设置一个开关来定义是对单个案例还是对多个案例进行插值(类似于 -m 或 -s)。如果前者为真,程序将读取第四种输入文件的位置。在后者的情况下,它将读取另一个 csv,它给出了第四种输入类型的多个输入文件的位置。批处理文件还将定义输出位置和输出文件名。
根据我目前在此处和不同论坛上阅读的内容,我认为实现此目的的最简单方法是使用 ParamCount() 和 ParamStr() 以及 FindCmdLineSwitch。仍然有点模糊我到底打算如何使用这些(我为我的无知道歉,但这不仅是我的第一个 BCB 项目,也是我用 C++ 编码和创建 Windows GUI 的第一次真实体验)...据我了解,我可以以与此处描述的方式类似的方式使用这些 http://docwiki.embarcadero.com/CodeExamples/Seattle/en/ParamCount_(C%2B%2B) .
有几件事我不知道:
批处理文件会是什么样子?里面的参数是怎么分开的?只是空格?比如说,在我将新部分包含在我的脚本中之后,我可以创建一个看起来像这样的批处理脚本吗?
"C:/Program Files/myprogram/myprogram.exe""第一个输入的位置""第二个输入的位置"-m 等
(我以前在批处理模式下使用过 Ansys CFX,这是一个 CFD 工具,例如它有开关来定义哪个文件是定义文件 [-def] 和初始化文件 [-ini])。
与上述相关,开关是如何出现的?什么时候应该使用它们?例如,当我想为第一个输入定义一个位置时,它前面是否应该有一个开关,比如-inp1?我在这里看到一个例子 Selection of Forms just after program execution但我不确定这与简单的 ParamStr 有何不同?更具体地说,如何以及何时使用 FindCmdLineSwitch?
最后,使用以上三个函数中的任何一个,我是否必须更改 WINAPI WinMain() 调用参数中的任何内容?
谢谢。
最佳答案
Where in my program should I place the ParamCount() and ParamStr() parts which check whether I've launched the .exe from the command line/with a batch file?
在项目的 WinMain()
函数中,就像我在评论中告诉你的那样。例如:
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
if (ParamCount() >= 5)
{
String InputFile1 = ParamStr(1);
String InputFile2 = ParamStr(2);
String InputFile3 = ParamStr(3);
String Interpolation = ParamStr(4);
int index = 5;
if (Interpolation == "-s")
{
String InputFile4 = ParamStr(index++);
// load file as needed...
}
else
{
// load CSV as needed...
}
String OutputFile = ParamStr(index);
// process files as needed...
}
else
{
// normal GUI code here...
}
return 0;
}
it is suggested to place it in the main .cpp file, the one which initializes the forms
是的。
How would the batch file look like?
例如:
myprogram.exe "inputfile1" "inputfile2" "inputfile3" -m "outputfile"
myprogram.exe "inputfile1" "inputfile2" "inputfile3" -s "inputfile4" "outputfile"
How are the parameters separated in it? Just by spaces?
是的。其中有空格的参数需要用引号引起来。
Say, after I've included the new part in my script, can I create a batch script which looks something like this?
是的。
Related to the aboove, how do switches come into the picture? When should they be used? For example, when I want to define a location for the first input, should there be a switch before it, something like -inp1?
你可以这样做,但在这种情况下没有必要,因为参数有固定的位置。如果你想命名你的开关,你可以做更多类似这样的事情:
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
int count = ParamCount();
if (count > 0)
{
String InputFile1;
String InputFile2;
String InputFile3;
String InputFile4;
String Interpolation;
String OutputFile;
int idx = 1;
while (idx <= count)
{
String param = ParamStr(idx++);
if (param == "-inp1")
InputFile1 = ParamStr(idx++);
else if (param == "-inp2")
InputFile2 = ParamStr(idx++);
else if (param == "-inp3")
InputFile3 = ParamStr(idx++);
else if (param == "-s")
{
Interpolation = param;
InputFile4 = ParamStr(idx++);
}
else if (param == "-m")
Interpolation = param;
else if (param == "-out")
OutputFile = ParamStr(idx++);
}
// process files as needed...
}
else
{
// normal GUI code here...
}
return 0;
}
I see an example here "Selection of Forms just after program execution" but I'm not sure how does this differ from a simple ParamStr? More specifically, how and when do I use FindCmdLineSwitch?
FindCmdLineSwitch()
在整个命令行中搜索指定的开关。开关本身可以存在于命令行中的任何位置。当您不知道或不关心参数的顺序时,这很好,您只想知道开关是否存在。 FindCmdLineSwitch()
在开关的位置很重要或其他参数与开关相关联时没有用,因为 FindCmdLineSwitch()
不会告诉您它所在的位置找到了开关。
Finally, using any of the above three functions, do I have to change anything in the WINAPI WinMain() call parameters?
没有。但是,ParamStr()
确实存在一些已知的解析问题(参见 QC #3946),并且 FindCmdLineSwitch()
仅限于两种格式(“/switch”和“- switch”,它无法处理诸如“/switch:value”、“switch=value”等)。在这些情况下,如果您发现需要手动解析命令行,您可以使用 WinMain()
的 lpCmdLine
参数(尽管 GetCommandLine()
通常是更好的选择)。
关于c++ - 创建我的 .exe 的批处理版本,它采用命令行参数(BCB 4.0 中的 ParamCount()、ParamStr() 和 FindCmdLineSwitch),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32974727/
进程文件: bcb or bcb.exe 进程名称: Borland C++ Builder 进程类别:存在安全风险的进程 英文描述: bcb.exe belongs to the Borl
还有人遇到过这样的问题吗? swprintf_s(v, len, L"%ws", var); MessageBox(NULL, v, NULL' NULL); 消息框打印出“%ws”而不是var的内容
我已经离开 BCB 五年多了,现在我有一个 st00pid n00b 时刻。 我正在使用 BCB,并使用我拥有 Delphi 源代码的 VCL 组件包。 我想在组件的 Delphi 源代码中注释掉几行
我想在 RAD Studio C++ Builder XE 中将十六进制字符串转换为 16 位十进制。 例如,我有十六进制字符串“8FC”。这个的二进制表示是 100011111100。这个的十进制表
我买了Delphi 1时就买了-迷上了。当BCB出现时(大约在D3,iirc左右),我切换了,主要是因为我几十年来一直专业地使用C / C ++。 我已经“离开”了7或8年,现在正在返回。我仍然有BC
我正在寻找一些 BCB 代码来迭代表单上的控件并获取有关它们的一些信息。 我尝试使用 myForm->ControlCount和 typeid(myForm->Controls[i])但这给了我一些问
我需要直接从 SysUtils header 使用 IncMonth 过程,但我不知道如何在 C++ Builder XE 中使用 SysUtils.IncMonth()。 任何人都可以帮助我如何在
对于我在 Borland C++ Builder 4.0 中创建的程序,我希望能够创建一个可以设置批处理脚本的版本。批处理 srcipt 将调用我的 .exe(不启动主窗体窗口),这将导致使用批处理文
我是一名优秀的程序员,十分优秀!