转自:http://blog.csdn.net/lanmanck/article/details/8638391 上传源码时最好把空格行去掉,以前介绍了使用notepad++,现在发现,习惯用source insight的人士也可以很easy的去掉了: Options->Perferences->Files-> Remove extra white space when saving.保存时自动去除每行尾部的空格和tab. 以下是另一个兄弟的心得: http://blog.csdn.ne…
//最小矩形(非透明最小区域) public static function getMinRect(target:BitmapData):Rectangle{ return target.getColorBoundsRect(0xffffffff,0x00000000,false); } //去除多余透明区域 public static function removeTransparentRect(target:BitmapData,minRect:Rectangle):BitmapDa…
mysql text字段判断是否为空 mysql text字段为空select * from `tableName` where `textField` is null or `textField` = ''; mysql text字段不为空select * from `tableName` where `textField` is not null AND `textField` != '';…