📄 xwikiconfig.java
字号:
/**
* ===================================================================
*
* Copyright (c) 2003-2005 Ludovic Dubost, All rights reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details, published at
* http://www.gnu.org/copyleft/gpl.html or in gpl.txt in the
* root folder of this distribution.
*/
package com.xpn.xwiki;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;
public class XWikiConfig extends Properties {
public XWikiConfig() {
// Default constructor so that properties can be added after constructing the instance
// by using XWikiConfig.put().
}
public XWikiConfig(String path) throws XWikiException {
try {
FileInputStream fis = new FileInputStream(path);
loadConfig(fis, path);
}
catch (FileNotFoundException e) {
Object[] args = { path };
throw new XWikiException(XWikiException.MODULE_XWIKI_CONFIG,
XWikiException.ERROR_XWIKI_CONFIG_FILENOTFOUND,
"Configuration file {0} not found", e, args);
}
}
public XWikiConfig(InputStream is) throws XWikiException {
loadConfig(is, "");
}
public void loadConfig(InputStream is, String path) throws XWikiException {
try {
load(is);
}
catch (IOException e) {
Object[] args = { path };
throw new XWikiException(XWikiException.MODULE_XWIKI_CONFIG,
XWikiException.ERROR_XWIKI_CONFIG_FORMATERROR,
"Error reading configuration file", e, args);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -