您好,登錄后才能下訂單哦!
本篇內(nèi)容介紹了“怎么在Jython中解析命令行”的有關(guān)知識(shí),在實(shí)際案例的操作過(guò)程中,不少人都會(huì)遇到這樣的困境,接下來(lái)就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
在Jython中解析命令行
經(jīng)常會(huì)需要對(duì)命令行參數(shù)進(jìn)行比 sys.argv 所提供的更多的處理。parseArgs 函數(shù)可以用于作為一組位置參數(shù)和一個(gè)開(kāi)關(guān)字典得到任意的命令行參數(shù)。
因此,繼續(xù) JavaUtils.py模塊片段,我們看到:
def parseArgs (args, validNames, nameMap=None): """ Do some simple command line parsing. """ # validNames is a dictionary of valid switch names - # the value (if any) is a conversion function switches = {} positionals = [] for arg in args: if arg[0] == '-': # a switch text = arg[1:] name = text; value = None posn = text.find(':') # any value comes after a : if posn >= 0: name = text[:posn] value = text[posn + 1:] if nameMap is not None: # a map of valid switch names name = nameMap.get(name, name) if validNames.has_key(name): # or - if name in validNames: mapper = validNames[name] if mapper is None: switches[name] = value else: switches[name] = mapper(value) else: print "Unknown switch ignored -", name else: # a positional argument positionals.append(arg) return positionals, switches
可以如下使用這個(gè)函數(shù)(在文件 parsearg.py 中):
from sys import argv from JavaUtils import parseArgs switchDefs = {'s1':None, 's2':int, 's3':float, 's4':int} args, switches = parseArgs(argv[1:], switchDefs) print "args:", args print "switches:", switches
對(duì)于命令c:\>jython parsearg.py 1 2 3 -s1 -s2:1 ss -s4:2,它打?。?/p>
args: ['1', '2', '3', 'ss'] switches: {'s4': 2, 's2': 1, 's1': None}
這樣就實(shí)現(xiàn)了在Jython中解析命令行。
“怎么在Jython中解析命令行”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí)可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。