+0°
+0°
2012年05月02日
⁄ spark
⁄ 共 376字
spark启动的时候,在mainwindows里面有一个这个方法:
一分钟后执行spark的更新检查
if (!Default.getBoolean("DISABLE_UPDATES")) {
// Execute spark update checker after one minute.
final TimerTask task = new SwingTimerTask() {
public void doRun() {
checkForUpdates(false);
}
};
TaskEngine.getInstance().schedule(task, 60000);
}
然后执行checkForUpdates 方法
...
阅读全文
+0°
function httpRequest($url,$post='',$method='GET',$limit=0,$returnHeader=FALSE,$cookie='',$bysocket=FALSE,$ip='',$timeout=15,$block=TRUE) {
$return = '';
$matches = parse_url($url);
!isset($matches['host']) && $matches['host'] = '';
!isset($matches['path']) && $matches['path'] = '';
!isset($matches['query']) && $matches['query'] = '';
!isset($matc...
阅读全文
+0°
2012年04月26日
⁄ openfire
⁄ 共 4826字
openfire3.7插件开发方法 (2011-05-23 20:06)
分类: openfire
作用:初始化时在控制台打印测试消息。
开发环境:winxp/eclipse3.6/jdk1.5&1.6/mysql5.0/openfire3.7
开发步骤:
1. 布署openfire3.7源码
2. src/plugins目录下新建文件夹itvi。并按下图的目录结构新建对应的文件。
plugin.xml文件代码如下:
<?xml version="1.0" encoding="UTF-8"?>
<plugin>
<class>org.jivesoftware...
阅读全文
+0°
+0°
+0°
2012年04月23日
⁄ spark
⁄ 共 663字
spark二次开发 在chatroom上添加一个发送按钮。
chatroom是一个聊天界面类,在这个类里面可以获取很多的组件。 我们在org.jivesoftware.spark.ui 找到这个类 添加 如下的代码。
button = new JButton();
button.addActionListener(new ActionListener() {
public void actionPerformed(final ActionEvent arg0) {
sendMessage();
getChatInputEditor().setText("");
getChat...
阅读全文
+0°
2012年04月22日
⁄ spark
⁄ 共 499字
spark是开源的即时通讯软件。 国内的二次开发资料很少,今天我就讲一下修改spark联系人 联系组的字体大小
一、修改联系人的地方
org.jivesoftware.spark.ui.contactitem
// Set Default Font
final LocalPreferences pref = SettingsManager.getLocalPreferences(); 获取配置文件
fontSize = pref.getContactListFontSize(); // 从配置文件中提取默认大小 默认为11字号
替换成
fontSize=13 ...
阅读全文
+0°