作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须在
中给出“-”作为选项参数Getopt class
下面是我的代码
Getopt g = new Getopt("cm_log_parser", args, "i:s"); //-D to enable debug log
while((opt = g.getopt()) != -1)
{
switch (opt)
{
case 'f'://To set file name(if above is not specified)
fileNameWithPath = getAndCheckOptArg(fFlag, opt, g);
fFlag = true;
break;
case 's'://To set the header
String separator = getAndCheckOptArg(hFlag, opt, g);
hFlag = true;
breakk;
case '?':
usage("Invalid option" + opt + " option");
break;
}
}
我想在参数中给出 -s "-"但它显示一些错误,例如无效选项,有什么办法可以做到吗?
最佳答案
--
在 Getopt有特殊意义
The user can force getopt() to stop scanning the command line with the special argument "--" by itself. Any elements occuring before the "--" are scanned and permuted as normal. Any elements after the "--" are returned as is as non-option argv elements. For example, "foo -a -- bar -d" would return option 'a' then -1. optind would point to "foo", "bar" and "-d" as the non-option argv elements. The "--" is discarded by getopt().
所以恐怕你无法完成。
关于java - 如何在 getopt 类中将连字符作为选项参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19007174/
我是一名优秀的程序员,十分优秀!