我必須編寫方法,它將獲取我的字符串(顯示以逗號分隔的小時),並返回字符串的ListProperty。 在我的構造函數中我有逗號分隔的字符串爲ListProperty
this.showingHour = new SimpleListProperty<String>();
我想用的方法從這個話題:https://stackoverflow.com/a/7488676/4750111
List<String> items = Arrays.asList(str.split("\\s*,\\s*"));
但它會創建的ArrayList。有沒有像這樣的功能,但對於ListProperty?
謝謝,我不得不改變聲明爲'this.showingHour = new SimpleListProperty(FXCollections.observableList(new ArrayList ()));'然後做分割 –
Paus