我試圖將soapui屬性值(例如:2017/04/17 02:00:00)轉換爲毫秒。我必須將明天自定義的日期時間以毫秒的格式存儲到soapui屬性中。截至目前,我能夠將自定義時間的日期存儲到屬性中。現在需要將其轉換爲毫秒。使用groovy將soapui屬性值轉換爲毫秒
def date = new Date();
def nextDate = date + 1
tomorrow = nextDate.format("yyyy/MM/dd");
log.info tomorrow
def setTomorrow = testCase.testSuite.project.setPropertyValue("Date", tomorrow + ' 02:00:00');
long millisecond = setTomorrow.getTime();
log.info millisecond
錯誤:
不能空對象
請幫助的調用方法getTime()
。
的【什麼是一個NullPointerException,如何解決呢?(可能的複製http://stackoverflow.com/questions/218384/what-is-a-nullpointerexception-and-how-do- i-fix-it) –