setArgs metodu
Örnek
Açıklaması şöyle. Eğer seçenek birden fazla değer alıyorsa kullanılır
You have to set maximum the number of argument values the option can take, otherwise it assumes the option only has 1 argument value
Şöyle yaparız
Options options = new Options();
Option option = new Option("c", "c desc");
// Set option c to take maximum of 10 arguments
option.setArgs(10);
options.addOption(option);
Hiç yorum yok:
Yorum Gönder