此代码导致NetBeans探查器无法看到的内存泄漏。在Windows上泄漏并没有那么糟糕,并且看起来很平稳,但在运行时绝对会杀死Linux机器的内存。如果我在标签上注释掉setText方法,则内存不会泄露。如果我打印到控制台而不是将文本发送到标签,则不会发生泄漏。
我认为setText()方法由于某种原因持有旧值。
import javafx.application.Platform;
import javafx.embed.swing.JFXPanel;
import javafx.geometry.Orientation;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.layout.FlowPane;
import javafx.stage.Stage;
/**
*
* @author admin
*/
public class Sandbox {
Label theLabel;
boolean isUpdating = false;
int count = 0;
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
new Sandbox();
}
public Sandbox(){
new JFXPanel(); // this will prepare JavaFX toolkit and environment
FlowPane root = new FlowPane(Orientation.VERTICAL);
Platform.runLater(new Runnable() {
@Override
public void run() {
Scene scene = new Scene(root, 600, 600);
Stage stage = new Stage();
stage.setScene(scene);
stage.show();
}
});
theLabel = new Label();
root.getChildren().add(theLabel);
while(true){
try{
count ++;
if(isUpdating == false){
isUpdating = true;
Platform.runLater(new Runnable(){
public void run(){
theLabel.setText("TEST:" + count); //The culprit
isUpdating = false;
}
});
}
Thread.sleep(0);
}catch(InterruptedException ex){
}
}
}
}
答案 0 :(得分:0)
JavaFX似乎存在默认Linux驱动程序(Noveau)的问题。为我的系统(NVidia Quatro K2200)安装了正确的图形驱动程序后,内存泄漏消失了。