码迷,mamicode.com
首页 >  
搜索关键字:text    ( 52583个结果
C# Socket 入门3 UPD(转)
今天来写一个UPD1.服务端:usingSystem;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Net.Sockets;usingSystem.Net;namespaceConsoleApplication1{class...
分类:Windows程序   时间:2014-10-30 20:43:27    阅读次数:313
C# Socket 入门2(转)
现在来传一个图片看看, 改改程序, 看看服务端图片为 140K, 1.jgp1. 服务端1usingSystem;2usingSystem.Collections.Generic;3usingSystem.Text;4usingSystem.Net.Sockets;5usingSystem.Net;...
分类:Windows程序   时间:2014-10-30 20:38:33    阅读次数:254
Jquery表单验证
环境:jquery-1.10.1.min.jsjquery.validate.min.js任务:表单验证html:<formaction=""id="myform"method="POST"> <tableclass=""id="table1"> <tbody> <tr> <tdclass=""></td> <td><inputtype="text"id="name"name="name"value..
分类:Web程序   时间:2014-10-30 19:24:58    阅读次数:234
数据库数据在Java占用内存简单估算
数据库数据在Java占用内存简单估算   结论: 1.数据库记录放在JAVA里,用对象(ORM一般的处理方式)需要4倍左右的内存空间,用HashMap这种KV保存需要10倍空间; 2.如果你主要数据是text大文本,那空间一般可以按2倍估算。 以上是一个通用数据测试结论,估大家参考。   数据库记录占用的空间大小比较好算,比如一个int占用4字节,bigi...
分类:数据库   时间:2014-10-30 19:11:58    阅读次数:236
一个封装不错的 TcpClient 类
using System;using System.Net;using System.Net.Sockets;using System.Text;using System.Threading;namespace RDavey.Net{ public class AsyncTcpClient ...
分类:其他好文   时间:2014-10-30 19:05:43    阅读次数:400
[转]CSS浏览器兼容问题总结
E6.0,ie7.0与Firefox的CSS兼容性问题1.DOCTYPE影响CSS处理 2.FF:div设置margin-left,margin-right为auto时已经居中,IE不行 3.FF:body设置text-align时,div需要设置margin:auto(主要是margin-le.....
分类:Web程序   时间:2014-10-30 19:04:08    阅读次数:264
第一贱-UILabel
UILabel *label = [[UILabel alloc]init]; label.frame = CGRectMake(100, 100, 100, 100); label.text = @"我是label---redStar";//设置内容 label.backgroundCol...
分类:其他好文   时间:2014-10-30 18:57:52    阅读次数:173
c#中的Func
Func是一种委托,这是在3.5里面新增的,2.0里面我们使用委托是用Delegate,Func位于System.Core命名空间下,使用委托可以提升效率,例如在反射中使用就可以弥补反射所损失的性能。Func 的表现形式分为以下几种:1。Func2。Func3。Func4。Func5。FuncTRe...
分类:Windows程序   时间:2014-10-30 18:47:57    阅读次数:164
itext A4纸张横向创建PDF
import java.awt.Color; import java.io.FileOutputStream; import java.io.IOException; import com.lowagie.text.Cell; import com.lowagie.text.Docume...
分类:其他好文   时间:2014-10-30 18:44:14    阅读次数:1888
017QTP 描述性编程的使用方法
一、什么时候使用描述性编程在测试过程中,有些界面元素是动态出现或动态变化的,在录制的时候并没有添加到对象库中二、描述性编程的运行原理用描述性编程编写的测试脚本在运行时,QTP会使用测试脚本中给出的对象描述来查找对象,查找的位置不是对象库,而是与测试程序运行时QTP为其创建的临时对象版本进行匹配。三、...
分类:其他好文   时间:2014-10-30 16:47:48    阅读次数:164
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!