Java“无法序列化数据”

时间:2013-05-02 05:51:21

标签: javafx serializable

我正在尝试让我的剪贴板以拖放方式接收一些自定义数据。自定义数据是另一种java类型。这个其他类型确实实现了可序列化,所以我真的不确定为什么这不起作用。任何想法都表示赞赏!

imgView.setOnDragDetected(new EventHandler<MouseEvent>() {
    public void handle(MouseEvent event) {
        ClipboardContent content = new ClipboardContent();
        content.put(dataFormat, RHSIconizedToken.this);
        Dragboard db = imgView.startDragAndDrop(TransferMode.ANY); 
        db.setContent(content); 
        event.consume();
    }
});

要稍后检索此对象,我正在使用:

RHSIconizedToken replacementRHSiToken = (RHSIconizedToken) db.getContent(RHSIconizedToken.getDataFormat());

我收到以下错误,但RHSIconizedToken确实实现了Serializable

  

java.lang.IllegalArgumentException:无法序列化数据

GetDataFormat返回第一个代码示例中put参数中使用的DataFormat对象。

2 个答案:

答案 0 :(得分:1)

那是因为你的对象不可序列化。

确实,这不是因为它实现Serializable它是Serializable。

在异常内部深入查看,您可能会发现类似这样的内容

Caused by: java.io.NotSerializableException: javafx.beans.property.SimpleObjectProperty

也许制作一些字段transient会有所帮助。

答案 1 :(得分:1)

如果拖动对象不可序列化,请在拖动过程中将其保存在全局变量中。这是一个带有可拖动选项卡的JavaFx(带有lambdas的Java8)示例,这些选项卡位于同一JVM中的窗格之下。

import java.util.Random;

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.Tab;
import javafx.scene.control.TabPane;
import javafx.scene.input.ClipboardContent;
import javafx.scene.input.DataFormat;
import javafx.scene.input.Dragboard;
import javafx.scene.input.TransferMode;
import javafx.scene.layout.StackPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;  

public class DraggingTabPane extends Application {  

    private static final DataFormat TAB_TYPE = new DataFormat("nonserializableObject/tab");
    private static Tab dndTab;// global for drag-n-drop of non-serializable type

    public static void main(String[] args) {  
        launch(args);  
    }  

    @Override  
    public void start(Stage primaryStage) {  
        TabPane tabPane1 = createDndTabPane();  
        TabPane tabPane2 = createDndTabPane();  
        VBox root = new VBox(10);  
        root.getChildren().addAll(tabPane1, tabPane2);  

        final Random rng = new Random();  
        for (int i=1; i<=8; i++) {  
            final Tab tab = createDraggableTab("Tab "+i);  
            final StackPane pane = new StackPane();  
            int red = rng.nextInt(256);  
            int green = rng.nextInt(256);  
            int blue = rng.nextInt(256);  
            String style = String.format("-fx-background-color: rgb(%d, %d, %d);", red, green, blue);  
            pane.setStyle(style);  
            final Label label = new Label("This is tab "+i);  
            label.setStyle(String.format("-fx-text-fill: rgb(%d, %d, %d);", 256-red, 256-green, 256-blue));  
            pane.getChildren().add(label);  
            pane.setMinWidth(600);  
            pane.setMinHeight(250);  
            tab.setContent(pane);  
            if (i<=4) {  
                tabPane1.getTabs().add(tab);  
            } else {  
                tabPane2.getTabs().add(tab);  
            }  
        }  

        primaryStage.setScene(new Scene(root, 600, 600));  
        primaryStage.show();  
    }  

    public TabPane createDndTabPane() {  
        final TabPane tabPane = new TabPane();  
        tabPane.setOnDragOver(event -> {  
            if (event.getDragboard().hasContent(TAB_TYPE) 
                    && dndTab.getTabPane() != tabPane) {// && different from source location  
                event.acceptTransferModes(TransferMode.MOVE);
                event.consume();  
            }  
        });  
        tabPane.setOnDragDropped(event -> {  
            if (event.getDragboard().hasContent(TAB_TYPE) 
                    && dndTab.getTabPane() != tabPane) {// && different from source location  
                dndTab.getTabPane().getTabs().remove(dndTab);  
                tabPane.getTabs().add(dndTab);  
                event.setDropCompleted(true);  
                event.consume();  
            }  
        });  
        return tabPane;  
    }  

    private Tab createDraggableTab(String text) {  
        final Tab tab = new Tab();  
        final Label label = new Label(text);  
        tab.setGraphic(label);  
        label.setOnDragDetected(event -> {  
            Dragboard dragboard = label.startDragAndDrop(TransferMode.MOVE);  
            ClipboardContent clipboardContent = new ClipboardContent();  
            clipboardContent.put(TAB_TYPE, 1);
            dndTab = tab;
            dragboard.setContent(clipboardContent);
            event.consume();
        });  
        return tab ;  
    }  
}