关于java:sikuli中的日期函数

Date function in sikuli

我需要用锡库里语写下当前的日期。我在我的脚本中使用下面的代码片段,其中的日期已被硬编码,需要每天更改以每天运行脚本。我试图在文档中找到,但在那里找不到。代码片段:

1
type(Key.TAB +"ABC" + Key.TAB +"06-17-2015" + Key.TAB + Key.TAB + Key.DOWN + Key.TAB + Key.TAB + Key.TAB)

看一看Pythontimedatetime不适用于Sikuli。例如:

1
2
3
4
5
6
7
8
9
10
import time

now = time.strftime('%c')

# Date
print ('Date: ' + time.strftime('%x'))
# Time
print('Current time: ' + time.strftime('%X'))
#Current date and time.
print ('Current time %s' % now )

time.strftime('%m-%d-%y')更改"06-17-2015"