摘要: 很久很久以前,我刚听说过JQuery,然后在不知道javaeye还是blogjava上看到一篇《实现select multiple左右添加和删除功能》的文章,写的很黄很暴力,我一紧张就打印下来了,昨天晚上拉肚子上厕所,突然找出打印稿,在厕所上看了一下,发现不错。这个文章的原作者我已经不知道是谁了,但是我要感谢他的奉献精神。
为了表示对他的尊敬,我修改了他的代码,为了更通用。代码例子任然沿用原作者的风格。希望大家喜欢。
阅读全文
我真实的博客在百度空间,用习惯了不想换了,感兴趣的你就访问一下吧
我真实的博客在百度空间,用习惯了不想换了,感兴趣的你就访问一下吧
我真实的博客在百度空间,用习惯了不想换了,感兴趣的你就访问一下吧
http://hi.baidu.com/charlielogic
http://hi.baidu.com/charlielogic
http://hi.baidu.com/charlielogic
http://hi.baidu.com/charlielogic
http://hi.baidu.com/charlielogic
http://hi.baidu.com/charlielogic
http://hi.baidu.com/charlielogic
http://hi.baidu.com/charlielogic
http://hi.baidu.com/charlielogic
摘要: 使用Seam 的十大理由【翻译】
英文原文地址:http://seamframework.org/Home/WhySeam
阅读全文
Runtime.getRuntime().exec(cmds);
execInternal(cmdarray, envp, path);
private native Process execInternal(String cmdarray[], String envp[], String path)
throws IOException;
/**
* Executes the specified string command in a separate process.
* <p>
* The <code>command</code> argument is parsed into tokens and then
* executed as a command in a separate process. The token parsing is
* done by a {@link java.util.StringTokenizer} created by the call:
* <blockquote><pre>
* new StringTokenizer(command)
* </pre></blockquote>
* with no further modifications of the character categories.
* This method has exactly the same effect as
* <code>exec(command, null)</code>.
*
* @param command a specified system command.
* @return a <code>Process</code> object for managing the subprocess.
* @exception SecurityException if a security manager exists and its
* <code>checkExec</code> method doesn't allow creation of a subprocess.
* @exception IOException if an I/O error occurs
* @exception NullPointerException if <code>command</code> is
* <code>null</code>
* @exception IllegalArgumentException if <code>command</code> is empty
*
* @see java.lang.Runtime#exec(java.lang.String, java.lang.String[])
* @see java.lang.SecurityManager#checkExec(java.lang.String)
*/