解析class的工具类package com.google.reflect;import java.lang.reflect.Field;import java.lang.reflect.Method;import java.lang.reflect.Modifier;import java.lang.reflect.Proxy;impo……继续阅读 » 4年前 (2021-04-07) 1116浏览 916个赞
java 文件夹操作import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.ni……继续阅读 » 4年前 (2021-04-07) 1433浏览 2446个赞
java生成pdf package com.hundsun.gildata.irp.core.action;import java.io.File;import java.io.FileOutputStream;import java.io.IOException;import com.hundsun.gildata.irp.common.……继续阅读 » 4年前 (2021-04-07) 2644浏览 913个赞
Java模拟队列的出队和进队 package com.stackANDqueue;import java.io.DataInputStream;import java.io.IOException;/* * 循环队列的入队和出队 */public class Queue { static int MAX = 20; static ……继续阅读 » 4年前 (2021-04-07) 2368浏览 529个赞
JS代码时间格式与时间戳的相互转换 一.时间转换时间戳function transdate(endTime){var date=new Date();date.setFullYear(endTime.substring(0,4));date.setMonth(endTime……继续阅读 » 4年前 (2021-04-07) 2480浏览 461个赞
JavaScript添加到收藏夹和设置为主页的代码,网站上经常用到的两个功能// JavaScript Document// 加入收藏 < a onclick="AddFavorite(window.location,document.title)" >加入收藏< /a>function AddFav……继续阅读 » 4年前 (2021-04-07) 2449浏览 1127个赞
JavaScript SHA512加密算法详细代码/* * A JavaScript implementation of the Secure Hash Algorithm, SHA-512, as defined * in FIPS 180-2 * Version 2.2 Copyright Anonymous Contributor, Pau……继续阅读 » 4年前 (2021-04-07) 2831浏览 1029个赞
JavaScript SHA-256加密算法详细代码/* * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined * in FIPS 180-2 * Version 2.2 Copyright Angel Marin, Paul Johnsto……继续阅读 » 4年前 (2021-04-07) 2747浏览 1987个赞
JavaScript SHA1加密算法实现详细代码/* * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined * in FIPS 180-1 * Version 2.2 Copyright Paul Johnston 2000 - 2009. ……继续阅读 » 4年前 (2021-04-07) 2243浏览 2215个赞
当鼠标在图片上方时,图片停止漂浮,点击关闭按钮可隐藏图片,代码简单,直接插入网页更换成自己的漂浮图片就可以使用。<body><div id="float" style=" position:absolute; z-index:3"><img id="img1"……继续阅读 » 4年前 (2021-04-07) 2054浏览 2447个赞
JavaScript检测浏览器cookie是否已经启动,代码稍显复杂,通过写入一个测试cookie判断cookie是否已经启动var dt = new Date(); dt.setSeconds(dt.getSeconds() + 60); document.cookie = "cookietest=1; expires=" +……继续阅读 » 4年前 (2021-04-07) 2863浏览 223个赞
在一个网页中同时调用jQuery和prototype会产生冲突,主要是$全局变量冲突,下面这段代码有效的解决了这个问题一定要先引入prototype.js 再引入jquery.js,先后顺序不可错<script src="prototype.js"></script><script src=&quo……继续阅读 » 4年前 (2021-04-07) 1940浏览 962个赞
要从列表框同时删除多个项目,我们不能从上到下的删除,因为上面的项目每删除一个,下面的项目的索引号就会变化,所以只能从下向上删除,这样就不会出现索引号乱变的问题了。 html代码<table><tr> <td align="cent……继续阅读 » 4年前 (2021-04-07) 2739浏览 806个赞
JavaScript里字符串不能直接换行书写,需要使用 \ 符号进行换行,其实这一点非常不方便,不过目前也没有好的办法。var multiStr = "This is the first line \ This is the second line \ This is more... \ http://www.75271.com ……继续阅读 » 4年前 (2021-04-07) 1927浏览 817个赞
这段代码演示了jQuery通过closest选择器上一级的元素,然后修改其text()内容<!DOCTYPE html><html><head> <meta http-equiv="content-type" content="text/html; charset=UTF……继续阅读 » 4年前 (2021-04-07) 2705浏览 162个赞
如果jquery要选择的元素id中带有点符号,在选择时需要在点前面加上两个反斜杠,如:$(“#address\\.street”).text(“Enter this field”);<!DOCTYPE html><html><head> <meta h……继续阅读 » 4年前 (2021-04-07) 2424浏览 110个赞
jQuery克隆JavaScript对象,下面的代码演示了如何克隆jQuery的对象,也演示了如何克隆JavaScript的对象 jquery中克隆对象可以用// Clone the DIVvar cloned = $('#somediv').clone()……继续阅读 » 4年前 (2021-04-07) 2165浏览 2808个赞
JavaScript给url网址进行encode编码,使用encodeURIComponent即可var myUrl = 'http://www.baidu.com';var myOtherUrl = "http://www.75271.com/index.html?url=" + encode……继续阅读 » 4年前 (2021-04-07) 2875浏览 448个赞
这段JS代码用于从数组中移除重复的元素,比如: [‘apple’, ‘orange’, ‘peach’, ‘apple’, ‘strawberry’, ‘orange’] 去重后返回:s [‘apple&……继续阅读 » 4年前 (2021-04-07) 1368浏览 1570个赞
下面的JS代码,为String对象定义了一个contains方法用于判断字符串是否包含子字符串,非常有用。if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(obj, start) { for (var i = (start || 0), j ……继续阅读 » 4年前 (2021-04-07) 2952浏览 2582个赞
这个功能我们经常用到,将左边列表框的元素移动到右边,或者将右边列表框的元素移动到左边,可以一次性全部移动function listbox_moveacross(sourceID, destID) { var src = document.getElementById(sourceID); var dest = document.getE……继续阅读 » 4年前 (2021-04-07) 2298浏览 1121个赞
这段JS代码可以控制listbox内的元素向上或者向下移动,这个功能非常有用。下面是详细的代码。function listbox_move(listID, direction) { var listbox = document.getElementById(listID); var selIndex = listbox.selec……继续阅读 » 4年前 (2021-04-07) 1657浏览 123个赞
通过JS代码对列表框进行全选和反选是经常要操作的,赶紧搜藏这段代码。function listboxSelectDeselect(listID, isSelect) { // http://www.75271.com var listbox = document.getElementById(listID); for(var co……继续阅读 » 4年前 (2021-04-07) 2495浏览 872个赞
如果用户在listbox列表框中选择了多个元素可以通过此JS代码一次性全部删除,非常有用。function selectBoxRemove(sourceID) { //get the listbox object from id. var src = document.getElementById(sourceID); ……继续阅读 » 4年前 (2021-04-07) 3042浏览 2054个赞
下面的JS代码可以阻止用户点击返回按钮,别问我为什么要阻止用户返回上一页,你懂得。<SCRIPT type="text/javascript"> window.history.forward(); function noBack() { window.history.forward(); }</S……继续阅读 » 4年前 (2021-04-07) 1435浏览 1277个赞
这段JS代码可以判断出用户是否对表单内容进行了修改,如果修改了表单,并退出浏览器,则会提醒用户是否要保存表单的内容,非常有用的代码,75271.com提供。/** * Determines if a form is dirty by comparing the current value of each element * with its def……继续阅读 » 4年前 (2021-04-07) 2521浏览 2366个赞
这段代码会在用户点击back向后按钮时提醒用户,如果用户有未保存的数据,使用这个事件非常有用window.onbeforeunload = function() { //http://www.75271.com return "You work will be lost."; };……继续阅读 » 4年前 (2021-04-07) 1752浏览 802个赞
JavaScript捕获用户退出或者关闭浏览器事件,下面的代码非常有用,如果用户在没有保存信息的情况下要关闭浏览器获取跳转到其它页面,就可以通过这段代码提示用户是否要保存数据。<script language="javascript">function fnUnloadHandler() { // Add……继续阅读 » 4年前 (2021-04-07) 2355浏览 2120个赞
JavaScript产生1-n之间的随机数,可以任意指定n的大小,js自身的随机数只能产生0-1之间的浮点数,下面的代码通过转换实现1-n之间的随机数生成//random number from 1 to Nvar random = Math.floor(Math.random() * N + 1); //random number from 1……继续阅读 » 4年前 (2021-04-07) 1217浏览 1189个赞
JavaScript中我们可以把根据函数名的字符串来调用函数,这样我们就可以实现动态函数调用,只需要传递一个函数的名字即可调用该函数。var strFun = "someFunction"; //Name of the function to be calledvar strParam = "this is the pa……继续阅读 » 4年前 (2021-04-07) 2783浏览 178个赞
下面的代码使用了两种方式删除数组的元素,第一种定义一个单独的函数,第二种为Array对象定义了一个removeByValue的方法,调用非常简单 定义函数removeByValue进行元素删除function removeByValue(arr, val) { for(v……继续阅读 » 4年前 (2021-04-07) 1287浏览 2198个赞
JavaScript通过元素的索引号删除数组中的元素,如果要删除第3个元素,则使用removeByIndex(2)即可,JS数组从0开始function removeByIndex(arr, index) { arr.splice(index, 1);} test = new Array();test[0] = 'Apple&……继续阅读 » 4年前 (2021-04-07) 1258浏览 1016个赞
JavaScript将逗号分割的CSV格式字符串转换成数组,只需要通过split函数按照逗号分割即可。var str = "apple, peaches, oranges, mangoes";//http://www.75271.comvar fruitsArray = str.split(","); ……继续阅读 » 4年前 (2021-04-07) 1545浏览 2784个赞
JavaScript中数组对象的valueOf方法可以将数组的值输出为逗号分割的字符串,下面的代码演示了如何将数组抓换成逗号和竖线分割的字符串var fruits = ['apple', 'peaches', 'oranges', 'mangoes'];// http:/……继续阅读 » 4年前 (2021-04-07) 2635浏览 1263个赞
JavaScript将字符串转换成字符编码列表,例如foo转换成 [112,111,111] 方法 1: JavaScript 1.6Array.map('foo', function(x) { retu……继续阅读 » 4年前 (2021-04-07) 2120浏览 1923个赞
JS中的对象都包含valueOf方法,我们可以通过自定义valueOf函数替换掉原始object的valueOffunction foo() { this.valueOf = function() { return 'this is my value'; }}var bar = new foo();……继续阅读 » 4年前 (2021-04-07) 2292浏览 1801个赞
实际上就是先设置一个对照的字典,然后通过翻译函数,从字典中找到相应的键值。需要在JavaScript 1.8以上版本使用 函数定义如下function CreateTranslator(translationTable) function(s) s.replace(new Reg……继续阅读 » 4年前 (2021-04-07) 2413浏览 2404个赞
JavaScript生成一个随机字符串,可以指定字符串的长度function RandomString(length) { // http://www.75271.com var str = ''; for ( ; str.length < length; str += Math.random().to……继续阅读 » 4年前 (2021-04-07) 1947浏览 2607个赞
这段JS代码可以对数组内的元素进行随机排列,这个非常有用,比如我们在玩扑克牌的时候可以让扑克牌进行排列,也就是电脑洗牌。var list = [1,2,3,4,5,6,7,8,9];list = list.sort(function() Math.random() - 0.5);// http://www.75271.comPrint(list……继续阅读 » 4年前 (2021-04-07) 1829浏览 1488个赞
例如我们希望输出的数字长度是固定的,假设为10,如果数字为123,则输出0000000123,不够位数就在之前补足0,Sharejs.com提供了三种不同的方式实现JS代码给数字补0 的操作 方法1function PrefixInteger(num, length) { ……继续阅读 » 4年前 (2021-04-07) 2603浏览 1732个赞
这段JS代码可以通过Array.prototype.push.apply方法将一个数组插入到另外一个数组,下面的代码将数组b插入到a// http://www.75271.comvar a = [4,5,6];var b = [7,8,9];Array.prototype.push.apply(a, b);uneval(a); // is: ……继续阅读 » 4年前 (2021-04-07) 1676浏览 668个赞
JavaScript显示当前文档的最后修改日期<script language="Javascript"><!--// ***********************************************// http://www.75271.com// *********************……继续阅读 » 4年前 (2021-04-07) 1255浏览 2858个赞
JavaScript在标题栏上显示当前日期<script language="JavaScript"><!--// ***********************************************// http://www.75271.com// **********************……继续阅读 » 4年前 (2021-04-07) 2057浏览 2063个赞
JavaScript在浏览器标题栏上显示当前日期和时间,将这段脚本放到head区即可<script language="JavaScript"><!--// ***********************************************// http://www.75271.com// *……继续阅读 » 4年前 (2021-04-07) 2879浏览 2678个赞
JavaScript判断指定的变量是否存在,例如想变量a是否存在,可以调用 isExistsVariable(a)//是否存在指定变量function isExitsVariable(variableName){try{if(typeof(variableName)=="undefined"){//alert("v……继续阅读 » 4年前 (2021-04-07) 2977浏览 155个赞