我的问题非常直接(我只是一个玩弄东西的休闲编码器)。我已经建立了与 API 的连接,并且通过 RxJava 的魔力,我可以订阅发出 API 的 json 数据。我还使用 FXML 创建了一个非常基本的 GUI。
每次通过订阅发出事件时,如何使 TextArea = textAreaA 中的文本更新?换句话说,如何让 TextArea 显示 API 提要?
我已经从头到尾阅读了 RxJavaFx 指南,它似乎更关注 Fx 到 Rx 的事件定向流:(
这是我的代码示例:
public class Tester extends Application{
private static final Logger LOG = LoggerFactory.getLogger(Tester.class);
public static void main(String[] args) throws IOException, InterruptedException{
launch(args);
}
public void start (Stage primaryStage) throws Exception {
FXMLLoader loader = new FXMLLoader(getClass().getResource("sample.fxml"));
Parent root = loader.load();
primaryStage.setTitle("App Window");
primaryStage.setScene(new Scene(root, 300, 275));
primaryStage.show();
TESTER_API.TESTER_API_Connector();
}
}
public class TESTER_API {
public static void TESTER_API_Connector() throws IOException, InterruptedException {
StreamingEvents emissions = StreamingEventsFactory.INSTANCE.createEvents(TheseStreamingEvents.class.getName());
emissions.connect().blockingAwait();
emissions.getEvents().getSomethingSpecific()
.subscribe(event -> System.out.println(event.getSomethingSpecific()) // Here is the event that I would like to bind or otherwise push to textAreaA in the FXML controller
,throwable -> new Exception("GUI error!"));
}
}
public class FXMLDocumentController implements Initializable {
@FXML
public TextArea textAreaA;
@Override
public void initialize(URL arg0, ResourceBundle arg1) {
// TODO Auto-generated method stub
}
}