#all logger output level is 'ERROR' and output position is stdout #so only write our project's DEBUG log and ERROR log of the others log4j.rootLogger=ERROR, stdout ,R #log4j.appender is set output postion #log4j.logger is set some package(some packag
加载所有jar包下指定文件: 如spring中加载 META-INF/spring.handlers 加载 org.springframework.core.io.support.PropertiesLoaderUtils#loadAllProperties(java.lang.String, java.lang.ClassLoader) /** * Load all properties from the specified class path resource * (in ISO-8859
/** * check and delete the old package app if it exists. */ private void checkOldPackage() { String packageName = "xxx.xxx.xxx.xxx"; if (isAvilible(this, packageName)) { Intent uninstall_intent = new Intent(); uninstall_intent.setAction(Intent.A
C#中,Timer是一个定时器,它可以按照指定的时间间隔或者指定的时间执行一个事件. 指定时间间隔是指按特定的时间间隔,如每1分钟.每10分钟.每1个小时等执行指定事件: 指定时间是指每小时的第30分.每天10:30:30(每天的10点30分30秒)等执行指定的事件: 在上述两种情况下,都需要使用 Timer.Interval,方法如下: 1.按特定的时间间隔: using System; using System.Timers; namespace TimerExample { class P