- 浏览: 197353 次
- 性别:
- 来自: 杭州
最新评论
-
chenhaifeng5:
能详细讲一下么,偶公司做的是反洗钱系统的,是把公司已经 ...
银行IT系统项目 -
jspc:
ok
只不过的是放到相应的plugins的目录中 ok 重启 ...
安装Eclipse的Tomcat插件 -
click_guobin:
反驳你的用户名 幸好你注册了 不然我也看不到想要的,呵呵 ...
Decode -
本来不想注册:
return mapping.findForward(&quo ...
使用poi 从数据库导出生成Excel文件 -
2022228:
书上说的:
1.2版本之前只有启动类装载器和用户自定义的
1. ...
类装载器的体系结构
文章列表
<body background="" onkeypress="return validationOnEnter(event);" onload="self.focus();document.getElementById('').focus()">
<form method="post" action="" name="welcome" id="welcome" >
....
<input type=& ...
The RegExp Object has 3 methods: test(), exec(), and compile().
<script type="text/javascript">
var patt1=/\d/
document.write(patt1.test("34a"));
</script>
页面输出是true
function validationRegExp(regex, inputStr, helpText, helpMessage){
if(!regex.test(inputStr)) ...
<input id="phone" name="phone" type="text" size="12"
onblur="validationNonEmpty(this, document.getElementById('phone_help'))" />
<span id="phone_help" class="help"></span>
function validationNonEmpty(inp ...
先看代码:
public class ReferencePass {
public static void change(String str){
str = "xxd7";
}
public static void main(String[] args){
String str = "xxd";
change(str);
System.out.println(str);
}
}
结果是xxd,并没有chang成,这是为什么?
实际上:
1)String str = "xxd"; -- ...
http://www.javaworld.com/javaworld/javaqa/2001-11/03-qa-1121-mrhappy.html?page=1
http://www.javaworld.com/javaworld/javaqa/2001-06/03-qa-0622-vector.html?page=1
The include directive inserts the SOURCE of JSP or HTML files at translation time.
But the <jsp:include/> standard action inserts the RESPONSE of the JSP or HTML files at runtime.
There is an exra perfermance hit with every <jsp:include>. With directive, on the other hand, the hit happen ...
我只记记我容易忘记的或者暂时不甚了解的:
以下基本为摘录:
在编写平台独立的Java程序时,还必须遵从两条原则,这两条原则和Java虚拟机中的某些部分相关,Java虚拟机中的某些部分可以由不同的开放商用不同的方法实现。 这两条的原则是:
1) 不要依赖及时终结(finalization)来达到程序的正确性。
2) 不要依赖线程的优先级(thread prioritization)来达到程序的正确性。
这两条原则可以防止Java虚拟机规范中允许的垃圾收集和线程在不同实现中的变化所带来的不利影响。
所有的Java虚拟机都必须有垃圾收集堆,但是不同的实现可能使用不同的垃圾收集技术。所以,在不同的 ...
阅读“类装载器的体系结构”这一节时,
有一些的要点:
1.类装载器有两种: 启动类装载器和用户自定义的类的装载器。启动类装载器是Java虚拟机实现的一部分。启动类装载器通常使用某种默认方式从本地磁盘中装载类,包括Java API的类。启动类装载器也被称为原始类装载、系统类装载器或者默认装载器。
Java应用程序能够在运行时安装用户定义的类装载器,这种类装载器能够使用自定义的方式来装载类。
2.每个类被装载的时候,Java虚拟机都监视这个类,看它到底是被启动类装载器还是被用户自定义类装载器装载。当被装载的类引用了另外一个类时,虚拟机就会使用装载第一个类的类装载器 -->去装载 被引 ...
http://www.javaworld.com/community/node/2915
1. Pragma
When the no-cache directive is present in a request message, an application SHOULD forward the request toward the origin server even if it has a cached copy of what is being requested. This pragma directive has the same semantics as the no-cache cache-directive and is defined here for back ...
- 2009-05-15 17:21
- 浏览 1058
- 评论(0)