- 浏览: 243205 次
- 性别:
- 来自: 深圳
最新评论
-
gome_2016_lq:
大于等于就相当于 !小于。换一种思路也可以解决
慎用Date的after和before -
Haydroid:
liubin_ 写道地方法
jquery的ajax提交时“加载中”提示的处理方法 -
Haydroid:
...
jquery的ajax提交时“加载中”提示的处理方法 -
小宇宙_WZY:
...
java 多个if 和多个else if 的区别 -
liubin_:
地方法
jquery的ajax提交时“加载中”提示的处理方法
文章列表
js验证身份证的有限,很准。
- 博客分类:
- js
function checkCardId(socialNo){
if(socialNo == "")
{
alert("输入身份证号码不能为空!");
return (false);
}
if (socialNo.length != 15 && socialNo.length != 18)
{
alert("请输入有效证件号码!");
return (false);
}
var area={11:&q ...
floor 返回不大于的最大整数
round 则是4舍5入的计算,入的时候是到大于它的整数(当-1.5时可见,四舍五入后得到的结果不是我们期待的,解决办法是先对他取绝对值,然后在用round方法)
round方法,它表示“四舍五入”,算法为Math.floor(x+0.5),即将原来的数字加上0.5后再向下取整,所以,Math.round(11.5)的结果为12,Math.round(-11.5)的结果为-11。
ceil 则是不小于他的最小整数
看例子:
public class MyTest {
public static void main(String[] args) ...
修改Hosts文件
C:\WINDOWS\system32\drivers\etc
<result name="success" type="redirect">
http://www.baidu.com
</result>
js提交数据出现中文乱码解决
- 博客分类:
- js
1、首先在js中编码
encodeURI($('#xm').val())
2、在java后台解码
String xm=URLDecoder.decode(request.getParameter("xm"),"UTF-8");
获取到的中文就不会出现乱码。
最近,在Eclipse中导入其他项目,总是报下面2个错误。将项目所需的jar都引入了。依然还存在这个问题。
1.The project was not built since its build path is incomplete. Cannot find the class file for java.lang.Object. Fix the build path then try building this project
2.The type java.lang.Object cannot be resolved. It is indirectly referenced from r ...
模拟表单发送POST,GET请求获取数据
- 博客分类:
- Java基础
public static String httpRequest(String reqUrl, String reqMethod,
String outStr) {
URL url = null;
String str = "";
InputStream in = null;
OutputStream out = null;
BufferedReader buff = null;
InputStreamReader inr = null;
HttpURLConnection httpConn = null;
Stri ...
java遍历Map的两种方法
- 博客分类:
- Java基础
public static void main(String[] args) {
Map<String, String> map = new HashMap<String, String>();
map.put("1", "11");
map.put("2", "22");
map.put("3", "33");
/**
* 通过Map.entrySet使用iterator遍历key和value
* ...
StringEscapeUtils类的使用
- 博客分类:
- Java基础
public static void main(String[] args) {
String test="<a>2536</a>";
String test2 = StringEscapeUtils.escapeHtml(test);
System.out.println(test2);
}
输出:
<a>2536</a>
public static void main(String[] args) {
String test="< ...
js评估用户输入的密码强度
- 博客分类:
- js
<title>Js评估用户输入的密码强度</title>
<script language=javascript>
//CharMode函数
//测试某个字符是属于哪一类.
function CharMode(iN){
if (iN>=48 && iN <=57) //数字
return 1;
if (iN>=65 && iN <=90) //大写字母
return 2;
if (iN>=97 && iN <=122) //小写
ret ...
marquee的使用
- 博客分类:
- js
<marquee scrollamount="2" scrolldelay="2" onmouseover="this.stop()" onmouseout="this.start()"
width="100%" height="21">Hello!!</marquee>
1.scrollamount="2" scrolldelay="2"代表滚动的速度
2.onmouseover onmouseou ...
/**
* md5加密
* @param sourceStr
* @param chartSet
* @return
*/
public static synchronized String md5Digest(String sourceStr,String chartSet)
{
try
{
if (sourceStr == null)
throw new NullPointerException("原字符串不能为NULL。");
MessageDigest ...
一直在找如何生成公钥私钥对,最后还是选择使用WinSCP工具可以直接生成公私钥对
打开WinSCP-PuttYgen-Generate-然后保存私钥公钥,搞定!