- 浏览: 707913 次
- 来自: ...
最新评论
-
ranguisheng:
可以加点注释,代码不便于阅读.
用java实现数据库连接池的一个简单示例 -
abcd880129:
这样写的话,还要用专门的下载工具,不然,只能下到一个为空的ex ...
ZK下载文件时,不在服务器生成文件直接下载 -
234369425:
同上,是20
java计算阶乘 -
CodeToMyLaw:
如果目录中含有中文呢?
[^\x00-\xff] 中文的 ...
js验证文件目录格式的正确性 -
yanzhoupuzhang:
加了,还是报那个错误!
org.apache.commons.dbcp.BasicDataSource的解决方法
文章列表
在一个表单中有很多CheckBox,请问如何实现选种一个而让所有的都选中?
---------------------------------------------------------------
function selectAll(checkBoxName){
var elms = document.getElementsByName(checkBoxName);
if (elms.length<1) return;
var allChecked = true;
for (var i=0;i<elms.length;i++)
if ( ...
今天开发中涉及到对一个层的信息控制,就是控制一个层中显示什么信息,查找资料才知道使用innerHTML属性来控制层的值,这个innerHTML跟表单里面的value属性有点类似,能够控制层的显示值。
比如说我一个div层里本来没有值 ...
表格部分代码如下:
<table id="testTbl" border=1>
<tr id="tr1">
<td width=6%><input type=checkbox id="box1"></td>
<td id="b">第一行</td>
</tr>
<tr id="tr2">
<td width=6%><input ty ...
<HTML>
<HEAD>
<META http-equiv='Content-Type' content='text/html; charset=gb2312'>
<TITLE>可输入的下拉框</TITLE>
</HEAD>
<BODY >
<div style="position:relative;">
<span style="margin-left:100px;width:18px;overflow:hidden;">
...
事件源对象
event.srcElement.tagName
event.srcElement.type
捕获释放
event.srcElement.setCapture();
event.srcElement.releaseCapture();
事件按键
event.keyCode
event.shiftKey
event.altKey
event.ctrlKey
事件返回值
event.returnValue
鼠标位置
event.x
event.y
窗体活动元素
document.activeElement
绑定事件
document.captureE ...
转载:脚本之家
<script>
function overIt(){
var the_obj = event.srcElement;
if(the_obj.tagName.toLowerCase() == "td"){
the_obj=the_obj.parentElement;
the_obj.oBgc=the_obj.currentStyle.backgroundColor; the_obj.oFc=the_obj.currentStyle.color;
the_ ...
转载:脚本之家
'//判断内容里是不是包含这个分页标签
if instr(cinfo,"[NextPage]")>0 then
flag=1
else
flag=0
end if
'//设置参数
<script language="Javascript" >
var Text,PageSize,flag
Text="<%=DealJsText(cinfo)%>";
PageSize=1500;
flag=<%=flag%>;
</script> ...
首先下载两个文件,
http://www.apache.org/dist/tomcat/tomcat-6/v6.0.16/bin/extras/tomcat-juli-adapters.jar
http://www.apache.org/dist/tomcat/tomcat-6/v6.0.16/bin/extras/tomcat-juli.jar
其中v6.0.16为tomcat的版本号,请根据具体版本进行修改后下载,以保证最后正常效果。
接下去再保证已经有log4j的情况下。
按照我写的目录结构来放置。
tomcat6-------lib
| |- ...
/**
* 处理大数字
* <p>高精度浮点数BigDecimal
* 它可以表示任意精度的小数,并对它们进行计算
* 由于BigDecimal对象是不可变的,这些方法中的每一个都会产生新的BigDecimal对象
* 因此,因为创建对象的开销,BigDecimal不适 ...
/**
* 生成随机数
*/
public class RandomNumber {
public static void main(String args[])
{
//使用java.lang.Math的random方法生成随机数
System.out.println("Math.random():" + Math.random());
//使用不带参数的构造方法构造java.util.Random对象
System.out.println("使用不带参数的构造方法构造的Random对象:");
...
/**
*
* 转换数字的进制
*/
public class EnterSystem {
public static void main(String args[])
{
//八进制数字的声明,在前面加上0
int iOct = 0567;
//十进制数字的声明
int iTen = 1000;
//十六进制数字的声明,在前面加上0x,x不区分大小写
int iHex = 0xABCD;
System.out.print("八进制0567转换成二进制:");
System.out.print ...
/**
* 数字的舍入
*
*/
public class Round
{
/**
* 利用java.lang.Math类对数字进行四舍五入
* @param dou 待舍入的数字
* @return 返回舍入后的整数
*/
public static long getTraRoundMath(double dou)
{
//Math.round方法采用首先将dou加上0.5,然后取下整数
//dou = 4.6,首先dou加0.5成5.1,其下整数为5.四舍五入的结果就是5
return Math.round(dou) ...
/**
* 格式化数字的输出
*
*/
public class FormatNumber
{
public static void main(String args[])
{
DecimalFormat df = new DecimalFormat();
double data = 1203.405607809;
System.out.println("格式化之前的数字:" + data);
//在格式化的时候会自动进行舍入,舍入模式是:
//向“最接近的”数字舍入,如果与两个相邻数字的距离相等,则向相邻的 ...
数字与其封装类之间的转换
- 博客分类:
- J2SE
/**
*
* 数字与其封装类之间的转换
*/
public class NumberClass {
/**
* byte类型数字转换成Byte类型对象
* @param b
* @return
*/
public static Byte byte2Byte(byte b)
{
//return Byte.valueOf(b);
return new Byte(b);
}
/**
* Byte类型对象转换成byte类型数字
* @param B
* @return
*/
public s ...
Adapter适配器模式
- 博客分类:
- J2SE
/**
* Adapter适配器模式<br>
* 打印数组的类
*/
public class Printer {
/**
* 输出数组到标准输出,数组元素间用空格隔开,整个数组在一行显示
* @param array
*/
public void printIntArray(int[] array)
{
if(array != null)
{
for(int i=0;i<array.length;i++)
{
System.out.print(array[i] + " " ...