当前位置: 编程技术>移动开发
本页文章导读:
▪解决Tomcat出现找不到种的情况 解决Tomcat出现找不到类的情况
Tomcat的配置问题
In Eclipse, Open the "Server" tab.
Double click on the "Tomcat6" entry to see the configuration.
Then click on the "Open launch configuration" link in the "General information" block.
In t.........
▪ setOnClickListener步骤 setOnClickListener方法
定义控件的监听事件例如:btn.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
setTitle("这个是被改变过的!");
}
});
......
▪ java中运用正则规则 java中使用正则规则
#str = 需要匹配的字符串#Pattern p = Pattern.compile(正则匹配规则);#Matcher m = p.matcher(str);#m.find();==是否匹配了,boolean值#m.group(1);$1#m.group(2);$2
......
[1]解决Tomcat出现找不到种的情况
来源: 互联网 发布时间: 2014-02-18
解决Tomcat出现找不到类的情况
In Eclipse, Open the "Server" tab.
Double click on the "Tomcat6" entry to see the configuration.
Then click on the "Open launch configuration" link in the "General information" block.
In the dialog, select the "Classpath" tab.
Click the "Add external jar" button.
Select the file "/usr/share/tomcat6/bin/tomcat-juli.jar"
Close the dialog.
Start tomcat 6 from Eclipse.
Tomcat的配置问题
Hopefully posting it here will help some poor soul.
[2] setOnClickListener步骤
来源: 互联网 发布时间: 2014-02-18
setOnClickListener方法
定义控件的监听事件
例如:
定义控件的监听事件
例如:
btn.setOnClickListener(new OnClickListener() { public void onClick(View v) { setTitle("这个是被改变过的!"); } });
[3] java中运用正则规则
来源: 互联网 发布时间: 2014-02-18
java中使用正则规则
#str = 需要匹配的字符串
#Pattern p = Pattern.compile(正则匹配规则);
#Matcher m = p.matcher(str);
#m.find();==是否匹配了,boolean值
#m.group(1);$1
#m.group(2);$2
#str = 需要匹配的字符串
#Pattern p = Pattern.compile(正则匹配规则);
#Matcher m = p.matcher(str);
#m.find();==是否匹配了,boolean值
#m.group(1);$1
#m.group(2);$2
最新技术文章: