`
文章列表
// 获取访问者ip public static String getIpAddr(HttpServletRequest request) { String ip = request.getHeader("x-forwarded-for"); if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) { ip = request.getHeader("Proxy-Client-IP"); } if (ip == null || ip.len ...
  因为web-inf下,应用服务器把它指为禁访目录,即直接在浏览器里是不能访问到的。但是可以让servlet进行访问,   如web-inf下有a.jsp则可以用request.getRequestDispatcher("/WEB-INF/a.jsp").forward(request,response);如果想访问web-inf下的html文件的话,用request.getRequestDispatcher("/WEB-INF/a.html").forward(request,response);是访问不了的。原因很简单,jsp就是servle ...
  JavaScript has an inbuilt support for dates and times with its Date object. The methods of the Date object return various values associated with date and time. To start working with dates and time, we first initialize a variable and assign it a value with the new operator and the Date() construct ...

Java_ .classpath 文件

    博客分类:
  • Java
  .classpath为XML格式的文件,其中最常用到的标签为:<classpathentry/>。它的常见属性有:kind,path,exported。 1. <classpathentry kind="src" path="src"/>指定了该项表示源文件,并指明了源文件的路径 2. <classpathentry kind="lib" path="WebRoot/WEB-INF/lib/antlr.jar"/>指定了该项表示库文件或目录,并指明了相应的存放路径 3 ...
  1、在Netscape Navigator 3.x中     (1)先退出Netscape,运行regedit命令。   (2)出现注册表编辑器后,打开HKEY-CURRENT-USER\SOFTWARE\NETSCAPE NAVIGATOR\URLHISTORY分支   (3)清除“URLHISTORY”中的你先想要隐藏的网址整行。   (4)关闭注册表文件,启动Netscape即可。   2、在Netscape Communicator 4.x中     (1)退出Netscape。   (2)用计算机的查找文件功能查到一个名为“prefs.js”的文件,它一般位于 ...
java.sql.SQLException: ORA-01830: date format picture ends before converting entire input string         at oracle.jdbc.driver.DatabaseError.throwSqlException(Ljava.lang.String;Ljava.lang.String;I)V(DatabaseError.java:125)        at oracle.jdbc.driver.T4CTTIoer.processError(Z) ...

Oracle中to_Char详解

  The following are number examples for the to_char function. to_char(1210.73, '9999.9') would return '1210.7' to_char(1210.73, '9,999.99') would return '1,210.73' to_char(1210.73, '$9,999.00') would return '$1,210.73' to_char(21, '000099') would return '000021'   The follow ...

Java_打包

    博客分类:
  • Java
  发布打war包dos命令:jar cvf name.war .   war包是带jsp页面,jar包不带jsp页面的.   在JDK的bin目录下提供了打包程序jar.exe。 如果要展开helloapp.war文件,命令为: jar xvf helloapp.war     假定有一个Web应用:C:\myHome myHome/WEB-INF/…… myHome/files/…… myHome/image/…… myHome/src/…… myHome/index.jsp 在命令行窗口下执行如下命令: C:\>cd myHome C:\myHom ...
  JS 的初始化装载, onload 是最坏的选择,  因为 onload 不是在 document 加载完成的时候调用的, 而是在页面所有元素 (包括图片等) 全部加载完成才会调用. 也就是说, 如果你的页面上有个尺寸很大的图片, 下载需要很长时间, 那么你的脚本就一直不能被初始化, 直到图片装载完成, 严重影响用户体验. 在 W3C 中有个叫 DOMContentLoaded 的事件, 故名思意, 它会在 DOM (文档对象模型) 被加载完成的时候触发. 那么我们就可以通过 document.addEventListener("DOMContentLoaded", ...
  /* * 判断图片类型 */ function checkImgType(ths){ if (ths.value == "") { alert("请上传图片"); return false; } else { if (!/\.(gif|jpg|jpeg|png|GIF|JPG|PNG)$/.test(ths.value)) { alert("图片类型必须是.gif,jpeg,jpg,png中的一种&q ...
  Bean property 'xxDao' is not writable or has an invalid setter method. Does the parameter type of the setter match the return type of the getter? Caused by: org.springframework.beans.NotWritablePropertyException: Invalid property 'xxDao' of bean class [com.xx.framework.exam.service.impl.xxService ...
1.取消按钮按下时的虚线框,在input里添加属性值 hideFocus 或者 HideFocus=true <input type="submit" value="提交" hidefocus="true" /> 2.只读文本框内容,在input里添加属性值 readonly <input type="text" readonly /> 3.防止退后清空的TEXT文档(可把style内容做做为类引用) <input type="text" style=&qu ...
【1、最基本的弹出窗口代码】   <SCRIPT LANGUAGE="javascript">   <!--   window.open ('page.html')   -->   </SCRIPT>      window.open ('page.html') 用于控制弹出新的窗口page.html,如果page.html不与主窗口在同一路径下,前面应写明路径,绝对路径(http://)和相对路径(../)均可。用单引号和双引号都可以, 只是不要混用。这一段代码可以加入HTML的任意位置,<head>和< ...
<a href="javascript:Foo();"> <script type="text/javascript"> function Foo() { ... } </script>
一、用以下方式将 lx 的值传到Action,然后 request.getParameter("lx") 拿到 lx 值 js中 window.location.href="getAllListByksbh.action?lx="+lx; 可行   二、jsp中 <form...> <input type="hidden" name="hidden" id="hidden" value=""/> //隐藏域 </form> ...
Global site tag (gtag.js) - Google Analytics