目前在学习Socket,因为和IO关系紧密,于是顺便也学了下IO
发现有这样一句话:
The flush method is valid on any output stream,but has no effect unless the stream is buffered
这句话意思是所有的输出流都有flush方法,但是仅对缓冲流有效
看到这里,笔者想到了自己写的serversocket...
分类:
编程语言 时间:
2014-11-12 11:53:08
阅读次数:
278
下面的实例用不同的颜色、方向重复显示一行文字。本实例代码如下:importjava.util.Random;
importjavafx.application.Application;
importjavafx.scene.Group;
importjavafx.scene.Scene;
importjavafx.scene.paint.Color;
importjavafx.scene.text.Text;
importjavafx.stage...
分类:
编程语言 时间:
2014-11-11 02:09:36
阅读次数:
241
import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.graphics.Port...
分类:
其他好文 时间:
2014-11-10 13:44:19
阅读次数:
208
你想重复的执行一个特定任务,这个任务具有一定的延时。1.例如:只要你的程序在运 行,你想每秒钟更新一次屏幕中的视图:- (void)paint:(NSTimer *)paramTimer{ NSLog(@"Painting");}- (void)startPainting{ self.p...
分类:
其他好文 时间:
2014-11-07 11:12:31
阅读次数:
127
1.Android中很多时候都要自己去画一个自定义控件出来,就需要用到Paint和Canvas这两个类。2.效果图: 3.直接上代码: 1 public class BatteryView extends View { 2 3 private Paint mBatteryPai...
分类:
移动开发 时间:
2014-11-06 23:29:44
阅读次数:
499
1 update tMeter set 字段= t.源自段 from (2 select * from 源表信息3 ) t4 where 关联条件实际demo:1 UPDATE dbo.WX_TWODIMENCODE_INFO SET 2 wti_scan_views=t...
分类:
数据库 时间:
2014-11-06 19:50:36
阅读次数:
234
1 $model = M();// 表名必须是完整的表名,如果有前缀,要加前缀2 $count = $model->table('wx_wxusers_purview p')->join('wx_wxusers u on p.openId=u.openid')->where($joinWhere)-...
分类:
Web程序 时间:
2014-11-06 19:05:31
阅读次数:
233
1 private Image offImage = new BufferedImage(800, 700, BufferedImage.TYPE_INT_RGB);//在内存中new一张图片出来 1 public void paint(Graphics g) { 2 Graphic...
分类:
其他好文 时间:
2014-11-05 22:59:46
阅读次数:
188
1.下面的Xfermode子类可以改变这种行为:AvoidXfermode 指定了一个颜色和容差,强制Paint避免在它上面绘图(或者只在它上面绘图)。PixelXorXfermode 当覆盖已有的颜色时,应用一个简单的像素XOR操作。PorterDuffXfermode 这是一个非常强大的转换模式...
分类:
其他好文 时间:
2014-11-05 16:56:28
阅读次数:
144
使用MaskFilterMaskFilter类可以为Paint分配边缘效果。对MaskFilter的扩展可以对一个Paint边缘的alpha通道应用转换。Android包含了下面几种MaskFilter:BlurMaskFilter 指定了一个模糊的样式和半径来处理Paint的边缘。EmbossMa...
分类:
其他好文 时间:
2014-11-04 14:52:07
阅读次数:
260