1、XMPPConnection:它主要是用来创建一个跟XMPP服务端的Socket连接。它是与Jabber服务端的默认连接并且已经在RFC
3920中精确定义过了。示例如下: XMPPConnection connection=new XMPPConnection(configuration...
分类:
其他好文 时间:
2014-06-07 02:11:01
阅读次数:
164
遇到Invalid action class configuration that reference的时候,你可以在你的Action中设置一下断点,来判断一下他是否找到了这个action。
不过遇到这个异常的时候都是没有进到action。
这时候,有几种可能导致呢?
(1)struts.xml的配置写的不对,name,class检查一下。如果是和spring做整合的,要注意struts中的...
分类:
其他好文 时间:
2014-06-05 10:22:29
阅读次数:
165
package wordcount;
import java.io.IOException;
import java.util.StringTokenizer;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.Int...
分类:
其他好文 时间:
2014-06-05 09:12:55
阅读次数:
203
eclipse git 报错:the current branch is not configured for pull No value for key branch.xxx.merge found in configuration
如图:
这是因为 在用gui创建分支的时候 config文件没有创建branch
在config文件加上
[branch "xxx"]
...
分类:
系统相关 时间:
2014-06-05 05:15:19
阅读次数:
326
解决 esxi 5.1 因为断电错误无法启动 报错 bank5 invalid configuration...
分类:
其他好文 时间:
2014-06-04 23:34:26
阅读次数:
782
虽然 2.0 版本发布以来,Spring 陆续提供了十多个注解,但是提供的这些注解只是为了在某些情况下简化 XML 的配置,并非要取代 XML 配置方式。这一点可以从 Spring IoC 容器的初始化类可以看出:ApplicationContext 接口的最常用的实现类是 ClassPathXmlApplicationContext
和 FileSystemXmlApplicationCon...
分类:
编程语言 时间:
2014-06-04 21:38:44
阅读次数:
531
ConfigurationManager读取和写入 提供对客户端应用程序配置文件的访问
通过引入System.Configuration.dll可以用ConfigurationManager类来读取项目中保存在App.config中的配置信息,如:
...
分类:
其他好文 时间:
2014-06-04 19:03:39
阅读次数:
302
解决方法:在RadialUndistort右键选择 Properties|Configuration
Properties|C/C++|General|Additional Included Directories,下拉选择Edit(如下图),添加一行
"../lib/jpeg/src" 即可解决思...
分类:
其他好文 时间:
2014-06-03 13:03:56
阅读次数:
368
代码如下:using System;using
System.Collections.Generic;using System.Linq;using System.Text;using
System.Configuration;using System.Collections;using Syste...
分类:
其他好文 时间:
2014-06-03 07:38:59
阅读次数:
208
需要读取Web.config/App.config的配置很简单,首先我们需要将配置写入到中,例如:
读取配置语句(需要引入System.Configuration):ConfigurationManager.AppSettings["thumbSize_weight"]Done!
分类:
移动开发 时间:
2014-05-29 15:15:54
阅读次数:
536