我有一个问题,因为我能够将文本保存到 RTF 文件,也能够将图像插入到文件中,但是当我保存文件并再次加载时,图像没有显示。我曾尝试使用 base64 来解决这个问题,但没有奏效。如何才能将图像保存到 RTF 文件中,并在文件重新打开时显示?
这是我的代码:
JFileChooser fileChooser = new JFileChooser();
int option = fileChooser.showOpenDialog(null);
File file = fileChooser.getSelectedFile();
if (option == JFileChooser.APPROVE_OPTION) {
try {
BufferedImage image = ImageIO.read(file);
image = Scalr.resize(image, 200);
document = (StyledDocument) textPane.getDocument();
javax.swing.text.Style style = document.addStyle("StyleName",
null);
StyleConstants.setIcon(style, new ImageIcon(image));
document.insertString(document.getLength(), "ignored text",
style);
}
catch (Exception ex) {
ex.printStackTrace();
}
}
if (option == JFileChooser.CANCEL_OPTION) {
fileChooser.setVisible(false);
}