摘要:
以下命令都是以root身份输入的1.从图形界面进入问文本界面:init 32.从文本界面进入图形界面:startx3.从普通用户进入root用户:su4.进入文件夹:cd /文件路径5.返回上一个文件夹:cd ..6.查看当前位置的文件以及文件夹:ls7.查看当前位置所在的路径:pwd8.复制文件:cp 文件名 /新的文件夹的路径9.打开文件:cat 文件名10.删除文件: rm 文件名11.编辑文件:vi/vim 文件名 i 编辑文件 n 往下翻页浏览 ?字符(或文件名) 向上搜索字符(或文件名) /字符(或文件名) 向下搜索字符(或文件名) :输入命令 q 退出 q! 强制退出 ... 阅读全文
摘要:
package com.iapppay.maintain.common;import java.util.Map;import org.jasypt.commons.CommonUtils;import com.opensymphony.xwork2.Action;import com.opensymphony.xwork2.ActionContext;import com.opensymphony.xwork2.ActionInvocation;import com.opensymphony.xwork2.interceptor.MethodFilterInterceptor;public 阅读全文
摘要:
public class LoginFilter implements Filter { private ICacheClient memcache; public void setMemcache(ICacheClient memcache) { this.memcache = memcache; } private FilterConfig filterConfig; @Override public void destroy() { this.filterConfig=null; } ... 阅读全文
摘要:
String number="^\\+?[1-9][0-9]*$"; //非零的正整数Pattern pu = Pattern.compile(number);Matcher mu =pu.matcher("1");System.out.println("验证非零的正整数:"+mu.matches());得到的结果是:true 阅读全文
摘要:
Resource res = new ClassPathResource("applicationContext.xml"); BeanFactory factory = new XmlBeanFactory(res); /*不在applicationContext.xml配置PropertyPlaceholderConfigurer * Properties props = new Properties(); * * props.load(new FileInputStre... 阅读全文