- 浏览: 140959 次
- 性别:
- 来自: 北京
最新评论
-
sparksun007:
不是你粗心,是作者应该更详细地备注说明下!
BufferedInputFile---thinking in java书上的一个问题??? -
coosummer:
推荐使用http://buttoncssgenerator.c ...
css制作button 带有滤镜效果 -
concideration:
thank you!
BufferedInputFile---thinking in java书上的一个问题??? -
lvlcl:
me too 。。。
BufferedInputFile---thinking in java书上的一个问题??? -
asi2012:
thingking in java就是经常使用很多他自定义的封 ...
BufferedInputFile---thinking in java书上的一个问题???
文章列表
Axis2 webservice 很好的博文,
地址:http://blog.sina.com.cn/s/blog_4f925fc30100tw89.html
还有其他java 常用工具介绍,
最近做的一个项目中运用到了连接池技术,可能我们大家比较熟悉的开源连接池有dbcp,c3p0,proxool。对这三种连接池来说,从性能和出错率来说,proxool稍微比前两种好些。今天我主要简单的讲述一下,我在项目中成功的配置和源码。
第一步:首先去http://proxool.sourceforge.net/下载一个proxool.jar文件了,我用的是proxool-0.8.3.jar,现在最新版本是proxool-0.9.3.jar.除了他们的查看监控台的页面有变化,其他的变化不是太大。
第二步:就是写一个单独的proxool.xml文件放到WEB-INF文 ...
- 2009-08-18 18:30
- 浏览 1094
- 评论(1)
最近做了一个项目要查实时数据库PI,希望用JDBC连接PI数据库取数据,有知道的朋友请指教下!!
十进制转换成其他进制
objectname.toString([radix])
objectname 必选项。要得到字符串表示的对象。
radix 可选项。指定将数字值转换为字符串时的进制。
例如:ar m = 10;
document.write(m.toString(2) + "<br>"); // 显示为 101 ...
- 2009-06-13 17:38
- 浏览 5365
- 评论(0)
1.本人は非識字者で、以上の内容の文字は皆知らないで、同じく見て分からないのがどんな意味です.
2.本人は過去、今および将来すべてビルの主人を知らないで、しかも昔からビルの主人と利益関係がありません。 ...
- 2009-05-19 17:58
- 浏览 595
- 评论(0)
有个朋友问我下载弹出提示框的写法,具体如下:
出现提示框
string strFile="F://a.doc";//路径根据实际情况而定
if(!System.IO.File.Exists(strFile))
{
Response.Write("<script language='javascript'>alert('对不起,文件不存在!');</script>");
return;
}
Response.Clear();
Response.ClearHeade ...
- 2009-05-15 20:28
- 浏览 1387
- 评论(0)
<!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>
<title>js.loadXmlDom.xmlString.html</title>
<me ...
- 2009-05-14 18:20
- 浏览 1820
- 评论(0)
2009-04-29 20:57:43 StandardContext[/gmccpos]Loading Spring root WebApplicationContext
2009-04-29 20:57:45 StandardContext[/gmccpos]Marking servlet action as unavailable
2009-04-29 20:57:45 StandardContext[/gmccpos]Servlet /gmccpos threw load() exception
javax.servlet.UnavailableException: P ...
- 2009-04-29 21:44
- 浏览 4804
- 评论(0)
http://www.52css.com/css_template/view.asp?id=82
- 2009-04-20 14:09
- 浏览 879
- 评论(0)
public:作用域为所有类。protected:作用域为当前类,同一package中的类以及当前类的子类。friendly:作用域为当前类和同一package中的类。默认。private:作用域为当前类。
- 2009-04-14 11:25
- 浏览 860
- 评论(0)
http://www.builder.com.cn/2008/0227/743432.shtml
http://www.builder.com.cn/2008/0227/743432.shtml
http://www.builder.com.cn/2008/0227/743432.shtml
http://www.builder.com.cn/2008/0227/743432.shtml
- 2009-04-08 17:50
- 浏览 1110
- 评论(0)
一个Oracle难题的解决
问题描述:1、运行一个java程序不断报错: ... Details : java.sql.SQLException: ORA-00980: synonym translation is no longer valid2、用system用户联入数据库,运行命令报错:SQL> desc dba_indexes; SP2-0749: Cannot re ...
- 2009-04-07 13:34
- 浏览 6267
- 评论(0)
http://demo.slivercrm.cn:8084/default.jsp
- 2009-04-02 10:08
- 浏览 1582
- 评论(0)
今天我写了个正则表达式的16进制的 表达式
var hex = document.getElementById("hex") ;
var reghex = new RegExp("(^0x[a-f0-9]{1,2}$)|(^0X[A-F0-9]{1,2}$)|(^[A-F0-9]{1,2}$)|(^[a-f0-9]{1,2}$)" )
if(reghex.exec(hex.value)==null){
alert("十六进制格式不对!!!例如:0xfa或0XFA或f或9");
hex.focus();
retu ...
- 2009-04-01 17:55
- 浏览 3750
- 评论(0)
我研究了下AOP对 异常的统一处理,这个东西太好用了,可把系统异常颗粒度划分细,
先来个接口
public interface TestBean
{
void test1()throws ClassNotFoundException;
int test2(int a,int b);
}
实现类:
public class TestBeanImpl implements TestBean
{
public void test1()throws ClassNotFoundException
{
Class.forName("Peson&q ...
- 2009-03-31 20:25
- 浏览 1032
- 评论(0)