1
我在R輸入語言新java.util.Date類型的數組中的所有元素的值和我有一個問題:如何打印中的R語言
在java中我有這樣
的方法public Date[] getAllDates(String fromDate, String toDate){
ArrayList<Date> dates= new ArrayList<Date>();
-------
Generating dates from fromDate to toDate here and setting into above
arraylist.
------
return dates.toArray(dates.size());
}
現在ř當我在調用此方法然後它返回這個數組
dates= c(classInstance$getAllDates(fromDate,toDate));
現在我不能夠顯示date數組中顯示的日期值,它僅顯示爲對象。
案例:1 和如果我使用print(str(dates[1]))
然後顯示
List of 1
$ :Formal class 'jrectRef' [package "rJava"] with 4 slots
.. [email protected] dimension: int 10
.. [email protected] jsig : chr "[Ljava/util/Date;"
.. [email protected] jobj :<externalptr>
.. [email protected] jclass : chr "[Ljava/util/Date;"
NULL
當我使用:print(typeof(dates[1]))
它顯示
"S4"
案例:2 當我使用: print(typeof(dates[1]))
它顯示
"list"
我什麼都試過,但我無法從這個數組顯示值。 請幫助我。謝謝