`
cqh520llr
  • 浏览: 509726 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
文章分类
社区版块
存档分类
最新评论
文章列表
代码贴出来有问题,下载文件试试看看吧 public class Main { public static void main(String[] args) { System.out.println("汤 羹".replace(" ", "")); System.out.println("汤 羹".replace(" ", "")); } } 结果: 汤羹 汤 羹
有瑕疵,录入‘1.’可以通过 来自网上 /** 验证金额 */ private static boolean hasPrice(String str) { Pattern pattern = Pattern.compile("^(([1-9]{1}\\d*)|([0]{1}))(\\.(\\d){0,2})?$"); Matcher match=pattern.matcher(str); if(match.matches()) { return true; } el ...
来自网上 //处理键盘事件 禁止后退键(Backspace)密码或单行、多行文本框除外 function banBackSpace(e){ var ev = e || window.event;//获取event对象 var obj = ev.target || ev.srcElement;//获取事件源 var t = obj.type || obj.getAttribute('type');//获取事件源类型 //获取作为判断条件的事件类型 var vReadOnly = obj. ...
FireFox中网站开发的完美组合:firebug + httpfox+ yslow + web developer 1、firebug: 2、httpfox(或者httpwatch) httpwatch在IE,FF中都可以 3、yslow: YSlow是yahoo美国开发的一个页面评分插件,非常的棒,从中我们可以看出我们页面 ...
import java.io.File; public class Main { /** * @param args */ public static void main(String[] args) { deleteDir("D:\\test"); } private static void deleteDir(String path) { File dir = new File(path); File[] files = dir.listFiles(); if (null == files) { ...

JS联动控制

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; ch ...

JS日历控件

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>datel.html</title> <script language="javascript" src="js/aa.js"></script> </head> <script language=" ...
getRequestURI,getRequestURL的区别 test1.jsp======================= <a href ="test.jsp?p=fuck">跳转到test2</a> test2.jsp======================= <%@ page language="java" import="java.util.*" pageEncoding="gb2312"%> <% String path = ...
* { font-family: Arial, Helvetica, sans-serif; font-size: 12px; line-height: 25px; color: #666666; } 各种浏览器开启JavaScript脚本方法 编辑:admin   发表时间:2011-03-21 20:54:19.0   浏览次数:6615    随着网站设计技术的发展,为了用户友好 ...
<script src="http://code.jquery.com/jquery-latest.js"></script> 网页性能优化{雅虎[转载]} 雅虎团队经验:网站页面性能优化的34条黄金守则 1、尽量减少HTTP请求次数 终端用户响应的时间中,有80%用于下载各项内容 ...
import java.io.File; import java.io.FileFilter; import java.util.ArrayList; import java.util.List; public class Test { /** * @param args */ public static void main(String[] args) { File file = new File("F:\\XXXX"); findSpecFile(file); for (File f : files) { ...
mootools 弹出框
http://www.cnblogs.com/liwp_Stephen/archive/2009/04/30/1259385.html http://yangjinhappy.iteye.com/category/27100 利用Java编写简单的WebService实例 使用Axis编写WebService比较简单,就我的理解,WebService的实现代码和编写Java代码其实没有什么区别,主要是将哪些Java类发布为WebService。下面是一个从编写测试例子到发布WebService,以及编写测试代码的过程介绍。 本例子的WebServi ...
<%@page import="javax.naming.*,java.sql.*,javax.sql.*;"%> <%@page contentType="text/html;charset=gbk"%> <% Context context = null; try { context = new InitialContext(); DataSource ds = (DataSource)context.lookup("java:comp/env/jdbc/extdPool") ...
人民币小写转大写 --亮点:(1)用字符串存储大写(相当于小写是数组下标,数组存储值为小写对应大写)及位级(位级排序恰对应小写位置) (2)先给数字*100并做round截取,免去小数点处理。 function toChRMB(objectValue) { var returnValue = objectValue; var comma_sign = returnValue.indexOf(","); while(comma_sign != -1) { returnValue = returnValue.replace(",& ...
Global site tag (gtag.js) - Google Analytics