java.io.NotSerializableException: javax.swing.filechooser.WindowsFileSystemView
java.io.NotSerializableException: javax.swing.filechooser.WindowsFileSystemView
我正在尝试将 JPanel
对象发送到服务器1。这样做时我收到错误 -
java.io.NotSerializableException: javax.swing.filechooser.WindowsFileSystemView
这是我写的代码。
private JPanel gui;
public URL url = null;
public URLConnection conn = null;
ObjectOutputStream writer;
url = new URL(EndUserFrame.uri);
conn = url.openConnection();
conn.setDoOutput(true);
writer = new ObjectOutputStream(new BufferedOutputStream(
conn.getOutputStream()));
writer.writeObject(gui);
如何解决这个错误?
- 我正在以树格式指定远程 PC 中的文件,将其添加到面板,然后通过网络发送。但是,无论我是发送
JFrame
还是 JPanel
还是 FileSystemView
还是 JTree
我都会收到同样的错误。
How to fix this error?
没有修复。你不能这样做。许多 Swing 和 AWT 类 根本无法序列化。
如果您真的需要发送 Swing 屏幕布局(或类似的东西),您需要将您尝试发送的信息提取到不同的(可序列化的)数据结构中。
另一方面,一些 Swing 类 是 可序列化的;查看@Andrew Thompson 的回答
I am specifying the files in the remote PC in a tree format, adding it to a panel and then sending it over the network. However whether I am sending JFrame
or JPanel
or FileSystemView
or JTree
I am getting the same error.
DefaultTreeModel
implements
Serializable
。应该可以通过网络对其进行序列化。
使用 XMLEncoder
.
序列化树模型
import java.awt.*;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import javax.swing.tree.*;
import java.io.*;
import java.beans.XMLEncoder;
public class SerializeTreeModel {
private JComponent ui = null;
SerializeTreeModel() {
initUI();
}
public void initUI() {
if (ui != null) {
return;
}
ui = new JPanel(new BorderLayout());
ui.setBorder(new EmptyBorder(4, 4, 4, 4));
JTree tree = new JTree();
tree.setVisibleRowCount(18);
DefaultTreeModel treeModel = (DefaultTreeModel) tree.getModel();
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
XMLEncoder xmlEncoder = new XMLEncoder(outStream);
xmlEncoder.writeObject(treeModel);
xmlEncoder.flush();
ui.add(new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
new JScrollPane(tree),
new JScrollPane(new JTextArea(outStream.toString(), 2, 64))));
}
public JComponent getUI() {
return ui;
}
public static void main(String[] args) {
Runnable r = new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception useDefault) {
}
SerializeTreeModel o = new SerializeTreeModel();
JFrame f = new JFrame("Serialize a TreeModel");
f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
f.setLocationByPlatform(true);
f.setContentPane(o.getUI());
f.pack();
f.setMinimumSize(f.getSize());
f.setVisible(true);
}
};
SwingUtilities.invokeLater(r);
}
}
另请参阅 File Browser GUI,其中一个主要组成部分是一棵树。
我正在尝试将 JPanel
对象发送到服务器1。这样做时我收到错误 -
java.io.NotSerializableException: javax.swing.filechooser.WindowsFileSystemView
这是我写的代码。
private JPanel gui;
public URL url = null;
public URLConnection conn = null;
ObjectOutputStream writer;
url = new URL(EndUserFrame.uri);
conn = url.openConnection();
conn.setDoOutput(true);
writer = new ObjectOutputStream(new BufferedOutputStream(
conn.getOutputStream()));
writer.writeObject(gui);
如何解决这个错误?
- 我正在以树格式指定远程 PC 中的文件,将其添加到面板,然后通过网络发送。但是,无论我是发送
JFrame
还是JPanel
还是FileSystemView
还是JTree
我都会收到同样的错误。
How to fix this error?
没有修复。你不能这样做。许多 Swing 和 AWT 类 根本无法序列化。
如果您真的需要发送 Swing 屏幕布局(或类似的东西),您需要将您尝试发送的信息提取到不同的(可序列化的)数据结构中。
另一方面,一些 Swing 类 是 可序列化的;查看@Andrew Thompson 的回答
I am specifying the files in the remote PC in a tree format, adding it to a panel and then sending it over the network. However whether I am sending
JFrame
orJPanel
orFileSystemView
orJTree
I am getting the same error.
DefaultTreeModel
implements
Serializable
。应该可以通过网络对其进行序列化。
使用 XMLEncoder
.
import java.awt.*;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
import javax.swing.tree.*;
import java.io.*;
import java.beans.XMLEncoder;
public class SerializeTreeModel {
private JComponent ui = null;
SerializeTreeModel() {
initUI();
}
public void initUI() {
if (ui != null) {
return;
}
ui = new JPanel(new BorderLayout());
ui.setBorder(new EmptyBorder(4, 4, 4, 4));
JTree tree = new JTree();
tree.setVisibleRowCount(18);
DefaultTreeModel treeModel = (DefaultTreeModel) tree.getModel();
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
XMLEncoder xmlEncoder = new XMLEncoder(outStream);
xmlEncoder.writeObject(treeModel);
xmlEncoder.flush();
ui.add(new JSplitPane(JSplitPane.HORIZONTAL_SPLIT,
new JScrollPane(tree),
new JScrollPane(new JTextArea(outStream.toString(), 2, 64))));
}
public JComponent getUI() {
return ui;
}
public static void main(String[] args) {
Runnable r = new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception useDefault) {
}
SerializeTreeModel o = new SerializeTreeModel();
JFrame f = new JFrame("Serialize a TreeModel");
f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
f.setLocationByPlatform(true);
f.setContentPane(o.getUI());
f.pack();
f.setMinimumSize(f.getSize());
f.setVisible(true);
}
};
SwingUtilities.invokeLater(r);
}
}
另请参阅 File Browser GUI,其中一个主要组成部分是一棵树。