- 浏览: 113372 次
- 性别:
- 来自: 北京
-
最新评论
-
爱岩修:
好贴,擦还得5个字以上啊,我根本就不知道说什么
关于application/x-www-form-urlencoded等字符编码的解释说明 -
baso4233:
学习了。 谢谢。
关于application/x-www-form-urlencoded等字符编码的解释说明 -
每个人都可爱:
http://www.cnblogs.com/tianyaxi ...
HTTP长连接 -
每个人都可爱:
daixinmei 写道我的怎么报错啊什么错误?
调用Google Translate Api -
daixinmei:
我的怎么报错啊
调用Google Translate Api
文章列表
版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明
http://fendechen.blogbus.com/logs/24955413.html
String IP = httpRequest.getHeader("x-forworded-for");
if (IP != null && IP.length() != 0) {
while ((IP != null) && (IP.equals("unknow"))) {
IP = httpRequest.getHeader(&quo ...
- 2009-01-06 12:23
- 浏览 1242
- 评论(0)
如何将字串 String 转换成整数 int
int i = Integer.valueOf(my_str).intValue();
int i=Integer.parseInt(str);
如何将字串 String 转换成Integer
Integer integer=Integer.valueOf(str);
如何将整数 int 转换成字串 String
1.) String s = String.valueOf(i);
2.) String s = Integer.toString(i);
3.) String s = "" + i;
如 ...
- 2009-01-06 11:43
- 浏览 2072
- 评论(0)
1、怎么把下面的表
year month amount
1991 1 1.1
1991 2 1.2
1991 3 1.3
1991 4 1.4
1992 1 2.1
1992 2 2.2
1992 3 2.3
1992 4 2.4
查成这样一个结果
year m1 m2 m3 m4
1991 1.1 1.2 1.3 1.4
1992 2.1 2.2 2.3 2.4
解一:
select [year],
(select amount from tab t where [mo ...
- 2009-01-05 22:06
- 浏览 1142
- 评论(0)
每天对自己多一点反思;
每天比昨天多一点进步;
每天比别人多一点努力;
持之以恒 效率优先 积极的去做~
坚持每周更新5篇以上。
- 2009-01-05 13:37
- 浏览 676
- 评论(2)