?? e404. determining when the logging configuration properties are reread.txt
字號:
The original configuration properties file (see e403 Configuring Logger Default Values with a Properties File) can be reread using LogManager.readConfiguration(). This method fires a PropertyChangeEvent.
// Register for the event
LogManager.getLogManager().addPropertyChangeListener(
new PropertyChangeListener() {
// This method is called when configuration file is reread
public void propertyChange(PropertyChangeEvent evt) {
String propName = evt.getPropertyName();
Object oldValue = evt.getOldValue();
Object newValue = evt.getOldValue();
// All values are null
}
});
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -