Swing/PersistenceService のバックアップ(No.23)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/PersistenceService へ行く。
- 1 (2012-03-26 (月) 15:45:39)
- 2 (2012-04-17 (火) 16:56:49)
- 3 (2012-04-17 (火) 19:53:11)
- 4 (2012-06-15 (金) 21:15:15)
- 5 (2012-06-23 (土) 05:08:04)
- 6 (2012-11-16 (金) 18:50:43)
- 7 (2012-12-13 (木) 15:14:56)
- 8 (2012-12-26 (水) 11:30:04)
- 9 (2013-05-03 (金) 23:45:05)
- 10 (2013-05-07 (火) 05:48:15)
- 11 (2013-11-14 (木) 19:06:49)
- 12 (2014-10-08 (水) 18:35:33)
- 13 (2014-10-13 (月) 06:51:47)
- 14 (2014-10-17 (金) 15:04:11)
- 15 (2014-12-20 (土) 13:22:57)
- 16 (2015-02-25 (水) 17:36:09)
- 17 (2015-06-23 (火) 16:15:22)
- 18 (2015-11-26 (木) 04:34:21)
- 19 (2016-05-26 (木) 15:29:02)
- 20 (2016-05-31 (火) 15:12:52)
- 21 (2017-02-20 (月) 18:24:55)
- 22 (2018-01-02 (火) 21:42:35)
- 23 (2019-12-26 (木) 16:53:52)
- 24 (2021-07-02 (金) 17:55:08)
- 25 (2023-03-09 (木) 19:03:41)
- category: swing folder: PersistenceService title: PersistenceServiceを使ってJFrameの位置・サイズを記憶 tags: [ServiceManager, PersistenceService, JFrame, SwingWorker, XMLEncoder, XMLDecoder, Preferences] author: aterai pubdate: 2012-03-26T15:45:39+09:00 description: ServiceManagerからPersistenceServiceを取得し、JFrameなどの位置・サイズの保存、呼び出しを行います。 image:
概要
ServiceManager
からPersistenceService
を取得し、JFrame
などの位置・サイズの保存、呼び出しを行います。
Screenshot
Advertisement
サンプルコード
class LoadSaveTask extends SwingWorker<WindowAdapter, Void> {
private final WindowState windowState;
public LoadSaveTask(WindowState windowState) {
super();
this.windowState = windowState;
}
@Override public WindowAdapter doInBackground() {
PersistenceService ps;
BasicService bs;
try {
bs = (BasicService) ServiceManager.lookup("javax.jnlp.BasicService");
ps = (PersistenceService) ServiceManager.lookup("javax.jnlp.PersistenceService");
} catch (UnavailableServiceException use) {
ps = null;
bs = null;
}
if (ps == null || bs == null) {
return null;
} else {
final PersistenceService persistenceService = ps;
final URL codebase = bs.getCodeBase();
loadWindowState(persistenceService, codebase, windowState);
return new WindowAdapter() {
@Override public void windowClosing(WindowEvent e) {
JFrame f = (JFrame) e.getComponent();
if (f.getExtendedState() == Frame.NORMAL) {
windowState.setSize(f.getSize());
windowState.setLocation(f.getLocationOnScreen());
}
saveWindowState(persistenceService, codebase, windowState);
}
};
}
}
private static void loadWindowState(
PersistenceService ps, URL codebase, WindowState windowState) {
try {
FileContents fc = ps.get(codebase);
try (XMLDecoder d = new XMLDecoder(
new BufferedInputStream(fc.getInputStream()))) {
@SuppressWarnings("unchecked")
Map<String, Serializable> map = (Map<String, Serializable>) d.readObject();
windowState.setSize((Dimension) map.get("size"));
windowState.setLocation((Point) map.get("location"));
}
} catch (IOException ex) {
try {
long size = ps.create(codebase, 64000);
System.out.println("Cache created - size: " + size);
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
private static void saveWindowState(
PersistenceService ps, URL codebase, WindowState windowState) {
try {
FileContents fc = ps.get(codebase);
try (XMLEncoder e = new XMLEncoder(
new BufferedOutputStream(fc.getOutputStream(true)))) {
HashMap<String, Serializable> map = new HashMap<>();
map.put("size", (Serializable) windowState.getSize());
map.put("location", (Serializable) windowState.getLocation());
e.writeObject(map);
e.flush();
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
View in GitHub: Java, Kotlin解説
上記のサンプルでは、JFrame
の位置とサイズをPersistenceService
で確保したファイルにXMLEncoder
で保存、XMLDecoder
でそのファイルから値を復元しています。
Windows
環境では、C:\Users\(user)\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\muffin
以下にmuf
ファイルが作成されるようです。
<?xml version="1.0" encoding="UTF-8"?>
<java version="1.7.0_03" class="java.beans.XMLDecoder">
<object class="java.util.HashMap">
<void method="put">
<string>location</string>
<object idref="Point0"/>
</void>
<void method="put">
<string>size</string>
<object idref="Dimension0"/>
</void>
</object>
</java>
XMLEncoder
で直接上記のJFrame
を書きだす場合、以下のようなIllegalAccessException
が発生する
java.lang.IllegalAccessException: Class sun.reflect.misc.Trampoline can not access a member of class MainPanel$2 with modifiers "" Continuing ...
- 回避方法
WindowListener
を実装する匿名内部クラスをpublic class
(Java Beans
)に変更する- または、
removeWindowListener
で取り除く - または、
XMLEncoder#setExceptionListener(...)
で、何もしないExceptionListener
を設定し、警告を捨ててしまう
//package example;
//-*- mode:java; encoding:utf-8 -*-
// vim:set fileencoding=utf-8:
//@homepage@
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import java.io.*;
import java.nio.charset.StandardCharsets;
import javax.swing.*;
public class MainPanel extends JPanel {
private static final String PROPERTIES_XML = "properties.xml";
public MainPanel() {
super(new BorderLayout());
JTextArea textArea = new JTextArea();
try (Reader fr = new InputStreamReader(
new FileInputStream(PROPERTIES_XML), StandardCharsets.UTF_8)) {
textArea.read(fr, "File");
} catch (Exception ex) {
ex.printStackTrace();
}
add(new JScrollPane(textArea));
}
public static void main(String... args) {
EventQueue.invokeLater(new Runnable() {
@Override public void run() {
createAndShowGUI();
}
});
}
public static void createAndShowGUI() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
e.printStackTrace();
}
JFrame frame = loadFrame();
frame.setVisible(true);
}
private static JFrame loadFrame() {
JFrame frame = null;
try (XMLDecoder d = new XMLDecoder(new BufferedInputStream(
new FileInputStream(PROPERTIES_XML)))) {
frame = (JFrame) d.readObject();
//d.close();
} catch (Exception ex) {
ex.printStackTrace();
}
if (frame == null) {
frame = new JFrame("title");
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
frame.getContentPane().add(new MainPanel());
frame.setSize(320, 240);
frame.setLocationRelativeTo(null);
}
frame.addWindowListener(new WindowAdapter() {
@Override public void windowClosing(WindowEvent e) {
JFrame frame = (JFrame) e.getComponent();
frame.removeWindowListener(this);
File file = new File(PROPERTIES_XML);
try (XMLEncoder xe = new XMLEncoder(new BufferedOutputStream(
new FileOutputStream(file)))) {
xe.setExceptionListener(new ExceptionListener() {
@Override public void exceptionThrown(Exception exception) {
//XXX:
exception.printStackTrace();
}
});
xe.writeObject(frame);
//xe.flush(); xe.close();
} catch (Exception ex) {
ex.printStackTrace();
}
}
});
return frame;
}
}