`
lgf444
  • 浏览: 80977 次
  • 性别: Icon_minigender_1
  • 来自: 长沙
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
JAVA定义:Java是一种简单的,面向对象的,分布式的,解释型的,健壮安全的,结构中立的,可移植的,性能优异、多线程的动态语言。   Java的主要特性:     1、Java语言是简单的。Java语言的语法与C语言和C++语言很接近,使 ...
<高性能网站建设指南>  
myEclipse打开JSP时老是要等上好几秒原因? 这个问题的确很烦人,其实都是MyEclipse的“自作聪明”的结果(它默认用Visual Designer来打开的),进行下列设置即可有效缓解之。 1. 要么右键单击文件,选择 Open With -》 MyEclipse JSP Editor 打开,这样不会采用可视化的打开,耗资源少,自动提示也非常快。 2. 要么采取一劳永逸的方法 Window -》 Preferences -》 General -》 Editors -》 File Associations 将默认打*.jsp的editor关联设置为MyEclipse JSP Edito ...
      比如输入 "System. "后提示两个一样的 "out "   ,其它也是,都是两两同样的。 有谁知道这是怎么回事吗? 本篇文章来自<A href='http://www.soidc.net'>IDC专家网</a>     将Window -> Preferences -> Java -> Editor -> Content Assist -> Advanced 下带有Mylyn的选项前的勾都去掉即可  
MyEclipse扩展功能设置(Eclipse代码提示功能扩展) 怎么设置使MyEclipse的代码提示功能一样能像Microsoft Visual Studio的代码提示功能 : 般默认情况下,Eclipse ,MyEclipse 的代码提示功能是比Microsoft Visual Studio的差很多的 ,主要是Eclipse ,M ...
    当用hibernate  查出一个list时  在网页中用el拿他的值时,出下面的错误   javax.servlet.ServletException: The "." operator was supplied with an index value of type "java.lang.String" to be applied to a List or array, but that value cannot be converted to an integer.   我找了半天的原因.list有值.什么就拿不出来呢?   在网上找了找.就 ...
org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml    at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1500)    at org.hibernate.cfg.Configuration.configure(Configuration.java:1434)    at org.hibernate.cfg.Configuration.configure(Configuration.java:14 ...
org.hibernate.LazyInitializationException: could not initialize proxy - no Session at org.hibernate.proxy.AbstractLazyInitializer.initialize(AbstractLazyInitializer.java:57) at org.hibernate.proxy.AbstractLazyInitializer.getImplementation (AbstractLazyInitializer.java:111) at org.hibernate.proxy.pojo ...

JS用法

    博客分类:
  • js
登出时,从树中跳出来   <script language='javascript'>parent.location.href="index.jsp";</script>
有时在项目中会遇到通过在页面中采用iframe的方式include其它页面,这时就会考虑不要因出现滚动条而影响页面效果,但include页面的内容高度是未知的,所以大家都会利用javascript来解决这个问题。在网上曾看见过解决此问题的代码,不过拷贝到本地进入调试时有些不正常,在IE下无法正确获得嵌套页面的高度,最终代码如下: <script type="text/javascript"> function SetCwinHeight(iframeObj){ if (document.getElementById){ if (iframeOb ...
设为首页代码大全把以下代码<Body>相应位置 <span  style="CURSOR: hand">设为首页</span>===============================================================强制设为首页代码<script> var ucook=document.cookie; var user=ucook.indexOF("ilooki="); if(user==-1) { var nowTime=new Date(); document.cook ...
关闭网页效果的实现办法,介绍几种常用的方法,方法如下:1.关闭时提示“是否关闭” Response.Write("<script language:javascript>javascript:window.close();</script>"); 2.直接关闭不提示 Response.Write("<script language:javascript>javascript:window.opener=null;window.close();</script>"); 3.用JavaScript实现 <b ...
网页关闭有什么给大家带来很不必要的麻烦,就是你点关闭按扭时还会弹出一个提示框,这样会让你很讨厌,特别是一些广告的内容弹出来;弹窗广告在有写站点会有看到,弹出来你不是关就不会自己没掉,这个让人头疼,其实在做的时候就加上自动关闭的代码,这样人家在不讨厌你的情况下既看到了你的广告内容,而且也没有给别人带来不必要的麻烦,这段代码很实用,嘿嘿,测试过,没问题,放心用~~~~~~~~~~ <body onload='setTimeout("mm()",5000)'><script>function mm(){    window.opener=null;    w ...
<HTML><HEAD><META http-equiv=Content-Type content="text/html; charset=gb2312"><META content="MSHTML 6.00.2900.2769" name=GENERATOR><meta http-equiv="refresh" content="1;url=http://www.syslh.com/a/a/8.htm"></HEAD><BODY text ...
分别去字符串前后,左边,右边空格   String.prototype.trim = function(){ return this.replace(/^\s+|\s+$/g,"")}  String.prototype.ltrim = function(){ return this.replace(/^\s+/g,"")}  String.prototype.rtrim = function(){ return this.replace(/\s+$/g,"")}
Global site tag (gtag.js) - Google Analytics