强制换行 1、word-break: break-all; 只对英文起作用,以字母作为换行依据。 2、word-wrap: break-word; 只对英文起作用,以单词作为换行依据。 3、white-space: pre-wrap; 只对中文起作用,强制换行。禁止换行 ...
分类:
Web程序 时间:
2014-07-24 12:17:05
阅读次数:
452
For the one pass solution... first I tried to build white\blue from red, but not working anyway. Then I referred someone' code, to build red\blue from...
分类:
其他好文 时间:
2014-07-22 22:42:54
阅读次数:
212
父类和子类如果类C1扩展自另一个类C2,那么C1称为子类或派生类,C2称为父类或基类。派生类可以从它的基类中继承可访问的数据域和方法,还可添加新数据域和新方法例如:实现一个几何图形基类;class GeometricObject1 { private String color = "white...
分类:
编程语言 时间:
2014-07-20 22:19:52
阅读次数:
293
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, wh...
分类:
其他好文 时间:
2014-07-20 21:36:16
阅读次数:
186
1. urlopen可以给一个Request Object返回一个response object,read()读取相应对象的内容,这时候的print(the_page)可以输出网页的html内容1 import urllib22 3 req = urllib2.Request('http://www...
分类:
编程语言 时间:
2014-07-20 09:03:38
阅读次数:
301
术语说明: QPS=req/sec=请求数/秒 【QPS计算PV和机器的方式】 QPS统计方式[一般使用http_load进行统计] QPS=总请求数/(进程总数*请求时间) QPS:单个进程每秒请求服务器的成功次数 单台服务器每天PV计算 公式1:每天总PV=QPS*3600*6 公式2:每天总PV=QPS*3600*8 服务器计算 服..
分类:
Web程序 时间:
2014-07-19 02:48:15
阅读次数:
215
//存入数据库name=$name; $this->color=$color; }}$hot=new Hot('xiaobei','white');$_SESSION['hot']=$hot;?>Get_ini_session.phpname=$name; $this->color=$color;....
分类:
数据库 时间:
2014-07-19 00:14:11
阅读次数:
336
1、文本显示一行 text-overflow:ellipsis; white-space:nowrap; overflow:hidden; text-overflow属性仅是注解,当文本溢出时是否显示省略标记。并不具备其它的样式属性定义。我们想要实现溢出时产生省略号的效果。还必须定义:强制文...
分类:
Web程序 时间:
2014-07-18 15:25:57
阅读次数:
273
显然错误的原因是没有重写servlet的doGet方法,只是覆盖了doPost的方法。解决的方法很简单:1 public void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IO....
分类:
Web程序 时间:
2014-07-18 14:16:22
阅读次数:
266
第1步:下载、安装文件
打开nodejs的官网http://www.nodejs.org/download/ ,选择需要的版本,直接打开,默认安装即可
第二步:编写测试代码:
var http = require('http');
http.createServer(function(req, res) {
res.writeHead(200, {
'Cont...
分类:
Web程序 时间:
2014-07-18 11:02:02
阅读次数:
273