Java 7.0でNetbeans 7.1 RC1を実行していて、javafxの例を実行しようとするたびにクラッシュします。JavaFX 2.0の例起動時に中国語を表示するとクラッシュする
以下は、私が実行しようとしていた例です。
Scene scene = new Scene(new Group());
stage.setTitle("Imported Fruits");
stage.setWidth(800);
stage.setHeight(600);
ObservableList<PieChart.Data> pieChartData =
FXCollections.observableArrayList(
new PieChart.Data("Grapefruit", 13),
new PieChart.Data("Oranges", 25),
new PieChart.Data("Plums", 10),
new PieChart.Data("Pears", 22),
new PieChart.Data("Apples", 30));
final PieChart chart = new PieChart(pieChartData);
//chart.setTitle("Imported Fruits");
chart.setLegendVisible(false);
// chart.setLabelsVisible(false);
//chart.setEffect(new GaussianBlur());
((Group) scene.getRoot()).getChildren().add(chart);
Timeline timeline = new Timeline();
timeline.getKeyFrames().addAll(
new KeyFrame(
Duration.ZERO,
new KeyValue(chart.rotateProperty(), 0), new KeyValue(chart.translateXProperty(), 0+ chart.getWidth()),new KeyValue(chart.translateXProperty(), 0 + chart.getHeight())),
new KeyFrame(
Duration.seconds(5),
new KeyValue(chart.rotateProperty(), 360), new KeyValue(chart.translateXProperty(), 800 - chart.getWidth()),new KeyValue(chart.translateXProperty(), 600 - chart.getHeight())));
//timeline.play();
stage.setScene(scene);
stage.show();
そして、このコードを実行している間、それがクラッシュし、私は空のキャンバスを実行する場合、それが正常に実行されます:
たびI上記のコードを実行すると、次のようにクラッシュします。
中国語ロケールがインストールされていますか?どのようなプログラムを実行しましたか?あなたのマシンでウイルスをチェックしましたか?私は最後の質問の原因は、私にはスパムのように見えるほとんど接続されていないこれらのメッセージを翻訳する原因です。 –
私のシステムでは、以下のコードは常にクラッシュしますが、空のキャンバスでしか実行されません。 – user1124315