方法1. 利用Bitmap.createBitmap Bitmap
adjustPhotoRotation(Bitmap bm, final int orientationDegree) { Matrix m = new
Matrix(); m.setRotate(...
分类:
移动开发 时间:
2014-06-06 21:59:25
阅读次数:
236
Swift 是什么? Swift 是苹果于 WWDC 2014 发布的编程语言,这里引用The
Swift Programming Language的原话:Swift is a new programming language for iOS and OS
X apps that builds...
分类:
移动开发 时间:
2014-06-06 21:58:04
阅读次数:
474
// 注册 jvm 关闭时操作
Runtime.getRuntime().addShutdownHook(new Thread(){ public void run() {
System.out.println("关闭"); } });
分类:
其他好文 时间:
2014-06-06 21:54:11
阅读次数:
241
构造函数个工厂模式创建的对象有什么不同参考http://www.zhihu.com/question/21220141方璐的回答对一个函数之前使用new是将是将该函数当做构造函数来调用,会创建一个该类的实例对象,这个对象的类型是这个函数名,中间使用this.propertyname=value会对该...
分类:
Web程序 时间:
2014-06-06 19:59:36
阅读次数:
229
新建 StandAlone Application 工程后, 再通过 File >
New > Other.. > IntraWeb > New Form 添加两个窗体.然后 TIWForm1 上放两个 TIWButton,
在 TIWForm2 和 TIWForm3 上各放一个 TIWButton...
分类:
Web程序 时间:
2014-06-06 18:40:04
阅读次数:
237
DML触发器 ,:new,:old ,referencing
子句,when子句,触发器谓词:inserting,updating,deleting
分类:
其他好文 时间:
2014-06-06 18:29:42
阅读次数:
276
日期的默认输出格式为:Tue Jun 03 19:30:08 CST
2014。问题:如果调整输出的格式。 public static void fun1() { Date date = new Date();
System.out.println(date.toString());} 使用正则表达...
分类:
其他好文 时间:
2014-06-06 17:27:41
阅读次数:
278
//程序启动时执行 application.onAppStart = function() {
this.myNC= new NetConnection(); this.myNC.onStatus = NC_onStatus;
this.myNC.connect("rtmp://cuplayer.....
分类:
其他好文 时间:
2014-06-06 14:56:20
阅读次数:
222
Lesson 1Pumas are large, cat-like animals which
are found in America. When reports came into London Zoo that a wild puma had
been spotted forty-five m...
分类:
其他好文 时间:
2014-06-06 14:08:51
阅读次数:
210
一些类和函数的变化:1)
QHBox这种类没有了,都需要改用QHBoxLayout来布局。就是先new一个QWidget出来,然后用这个Widget的setLayout方法来加入Layout。2)
QApplication的setMainWidget方法没有了,不需要手动设置主窗口部件,似乎自动就设...
分类:
其他好文 时间:
2014-06-06 13:59:13
阅读次数:
189