- 浏览: 74263 次
- 性别:
- 来自: 广州
最新评论
-
gotosuzhou:
相对路径怎么取
普通JAVA获取WEB项目下的WEB-INF目录 -
jianghg2010:
,不错,谢了!
jprofiler 7.x 注册码 -
shtqlb2130:
...
jprofiler 7.x 注册码 -
hujintaotaba:
注册码在jprofiler7.2.3上注册成功,谢谢分享。期待 ...
jprofiler 7.x 注册码 -
amber.zp:
高人,有8的注册码吗?
jprofiler 7.x 注册码
文章列表
爱,绝不是缺了就找,更不是累了就换找一个能一起吃苦的,而不是一起享受的找一个能一起承担的,而不是一起逃避的找一个能对你负责的,而不是对爱情负责的爱情是盲目的,生活是现实的因为爱情只不过是人类为了逃避现实而衍生的产品为了逃避现实,我寻找爱情为了寻找爱情,我失去真爱失去了真情,才发现早已身陷虚情.爱,绝不是缺了就找,更不是累了就换你以为爱情是什么?
1. Thinking in java
2.spring揭秘
3.servlet & jsp
4.深入浅出EXT JS
5.java TCP/IP Socket 编程
6.freemarker
未完
function checkLen(x,y){
if (y.length==x.maxLength){
var next=x.tabIndex;
//是否到了最后一个文本框
if (next<4){
document.getElementById("next"+next).focus();
}
}
}
<input size="3" tabindex="1" id="next0" onkeypress="return event.keyCod ...
<input onkeypress="return event.keyCode>=48&&event.keyCode<=57||event.keyCode==46" onpaste="return !clipboardData.getData('text').match(/\D/)" ondragenter="return false" style="ime-mode:Disabled" />
说明
1 只能输入0到9和小数点
2 只能粘贴数字
3 不能拖动内 ...
<html>
<head>
<script type="text/javascript">
var isIE = /msie/i.test(navigator.userAgent) && !window.opera;
function fileChange(target) {
var fileSize = 0;
if (isIE && !target.files) {
var filePath = target.value; ...
//判断字符是否有中文字符
function isHasChn(s) {
var patrn= /[\u4E00-\u9FA5]|[\uFE30-\uFFA0]/gi;
if (!patrn.exec(s)){
return false;
}else{
return true;
}
}
//判断字符是否全是中文字符
function isAllChn(str){
var reg = /^[\u4E00-\u9FA5]+$/;
if(!reg.test(str)){
alert("不是中文" ...
利用Javascript取和设FCKeditor值也是非常容易的,如下:
// 获取编辑器中HTML内容function getEditorHTMLContents(EditorName) { var oEditor = FCKeditorAPI.GetInstance(EditorName); return(oEditor.GetXHTML(true)); }
// 获取编辑器中文字内容function getEditorTextContents(EditorName) { var oEditor = FCKeditorAPI.GetInstance(EditorName); retu ...
由于用Myelipse开发maven项目消耗内存大,所以我在eclipse官网里下载了个最新版的eclipse-jee-64 先给eclipse安装maven插件 叫m2eclipse url: http://m2eclipse.sonatype.org/sites/m2e 在eclipse的help下找到install new software 然后在wokwith后面的add中编辑url 然后一路安装,安装后之后查看Eclipse的windows下面的preferences下的maven的setting文件是否设置正确 并把maven下的installations引入本地的maven根目录 ...
JAVA Web项目获取物理根目录绝对路径
package com.path;
import java.io.UnsupportedEncodingException;
import java.net.URL;
import java.net.URLDecoder;
/**
* 普通JAVA获取 WEB项目下的WEB-INF目录
* @author wang
*
*/
public class PathUtil {
public static void main(String[] args) {
PathUtil pathUti ...
private String getSQL(String strDate,String endDate){
String sql = "select t.arlncd,t.fleetcd,sum(t.flightnum) flightnum,sum(t.incountry) incountry,sum(t.international) international,"
+" sum(t.transport) transport,sum(t.freight) freight,sum(t.pilotnum) pilotnum,s ...