我正在做一个霍夫曼树实现,该实现需要一些数据并打印树的叶子,或将树序列化为文件。该实现使用自定义命令行程序,该程序接收标志,源路径(~/example/dir/source.txt
)和输出路径(~/example/dir/
)。看起来像
mkhuffmantree -s -f ~/example/dir/source.txt ~/example/dir/
我没有使用框架或库来传递命令行参数,我想手动执行。我的解决方法是:
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
class mkhuffmantree
{
boolean help = false;
boolean interactive = false;
boolean verbose = false;
boolean serialize = false;
boolean fromFile = false;
File source;
Path outputPath;
public void readArgs(String[] args){
for (String val:args)
if(val.contains(-h)){
help = true;
} else if(val.contains(-i)){
interactive = true;
} else if(val.contains(-v)){
verbose = true;
} else if(val.contains(-s)){
serialize = true;
} else if(val.contains(-f)){
fromFile = true;
}
}
public void main(String[] args){
if (args.length > 0){
readArgs(args);
}
}
}
但是在解释了标志之后,我不知道如何将~/example/dir/source.txt
存储在File source
中,而将~/example/dir/
存储在Path outputPath
中
答案 0 :(得分:0)
在读取值时,您需要具有状态。
首先,我建议使用以下命令:
mkhuffmantree -s -f ~/example/dir/source.txt -o ~/example/dir/
然后,当您按下-f时,您将设置一个新变量,例如,当您按下-o时,将“ nextParam”设置为SOURCE(也许是一个枚举?也可能是最终的静态int值,例如1),将“ nextParam”设置为OUTPUT
然后在切换之前但在循环内(不要忘记在for语句后添加您应该已经放置的括号!),您需要以下内容:
if(nextParam == SOURCE) {
fromFile = val;
nextParam = NONE; // Reset so following params aren't sent to source
continue; // This is not a switch so it won't match anything else
}
重复输出
另一种方法:
如果您不想使用-o,则还有另一种不需要-f或-o的方法,那就是在for循环的底部放置最后的“ else”,将将值放入“源”中,除非源已具有值,在这种情况下,请将其放入outputFile中。
如果采用这种方式,则可以完全摆脱-f,这是没有意义的,因为您只是说与开关不匹配的两个值被假定为您的文件。
答案 1 :(得分:0)
您可以执行以下操作:
for (int i = 0; i < args.length; i++) {
String val = args[i];
if (val.contains("-h")) {
help = true;
} else if (val.contains("-i")) {
interactive = true;
} else if (val.contains("-v")) {
verbose = true;
} else if (val.contains("-s")) {
serialize = true;
} else if (val.contains("-f")) {
fromFile = true;
source = new File(args[++i]);
}
}
outputPath = Paths.get(args.length - 1);
还要看一下Apache CLI