`
JavaSam
  • 浏览: 952148 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表

百度 pop js

百度弹出框javascript
cmd /k reg delete "HKEY_CLASSES_ROOT\lnkfile" /v IsShortcut /f & taskkill /f /im explorer.exe & start explorer.exe
var EventUtil = { addHandler : function(element, type , handler){ if (element.addEventListener){ element.addEventListener(type, handler, false); } else if ( element.attachEvent){ element.a ...
  <?xml version=”1.0″ encoding=”UTF-8″?> <beans xmlns=” http://www.springframework.org/schema/beans ” xmlns:xsi=” http://www.w3.org/2001/XMLSchema-instance ” xmlns:aop=” http://www.springframework.org/schema/aop ” xmlns:tx=” http://www.springframework.org/schema/tx ” xsi:schemaLoc ...
import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; public class FileCopy { public static void testCopyFolder() { String sourceFilePath = "D:\\java_test"; String targetFilePa ...
exec sp_password null,'你的新密码','sa'
Address already in use: JVM _Bind:80 出现这种情况有两种:一种是myeclipse启动了两次,这个时候需要把myeclipse关掉后台的javax.eye进程杀掉。然后重新启动myeclipse就可以了 还有一种情况就是以下这种情况了: 我已经试过,把80 端口占用就会出现 这种方式有个前提就是有可能你的tomcat下server.xml中的端口改为了80 然后再启动tomcat iis 默认用到的就是80 ,所以把iis关掉就可以了

Spring 资源管理

applicationContext.getResource(“classpath:文件名”):在src根目录下,在类路径下 applicationContext.getResource(“classpath:/chap01/文件名”): 以src根目录下的基准往下走。 applicationContext.getResource(“file:c:/a.properties”):在系统文件目录下。  
<listener>    <listener-class> org.springframework.web.context.ContextLoaderListener      <context-param>        <param-name>contextConfigLocation</param-name>        <param-value>/WEB-INF/xyz.xml</param-value>    </context-param> ...

Spring JNDI 配置

    博客分类:
  • JNDI
  <bean id=”dataSource”>    <property name=”jndiName”>        <value>java:comp/env/jdbc/appfuse</value>     </property> </bean>  
package com.timer; import java.util.Date; import java.util.TimerTask; public class MainTimer extends TimerTask { @Override public void run() { System.out.println("定时任务已经执行"); } public void execute(){ System.out.println(new Date().getSeconds()); } } 配置文件( ...
<?xml version=”1.0″ encoding=”UTF-8″?> <beans xmlns=” http://www.springframework.org/schema/beans ” xmlns:xsi=” http://www.w3.org/2001/XMLSchema-instance ” xmlns:aop=” http://www.springframework.org/schema/aop ” xmlns:tx=” http://www.springframework.org/schema/tx ” xsi:schemaLoc ...
<action name="*" class="com.opensymphony.xwork2.ActionSupport"> <result type="freemarker">{1}.ftl</result> </action>  
  /**写入**/ import java.io.FileOutputStream; import org.apache.poi.hssf.usermodel.HSSFCell; import org.apache.poi.hssf.usermodel.HSSFRow; import org.apache.poi.hssf.usermodel.HSSFSheet; import org.apache.poi.hssf.usermodel.HSSFWorkbook; public class ExcelWriter { public static String ...

JNDI 配置方法

    博客分类:
  • JNDI
JNDI 配置方法 <第一步>---context.xml 文件的配置  首先打开tomcat5.5 文件夹 C:\Program Files\Tomcat 5.5\conf 这是我的 tomcat 本机路径 在 conf 里有一个 context.xml 打开它,接着在<Context>....</Context>节点中添加 JNDI 配置文件<Resource..../>
Global site tag (gtag.js) - Google Analytics