GUI(Graphical User Interface) Java的GUI对象都存在java.Awt和javax.Swing两个包中。 java.awt:AbstractWindowToolkit(抽象窗口工具包),调用本地系统方法实现功能,属重量级控件。 javax.swing:在AWT的基础上...
分类:
编程语言 时间:
2015-10-20 17:45:20
阅读次数:
164
广度优先算法:# -*- coding: utf-8 -*- import urllibimport urllib.requestfrom bs4 import BeautifulSoupimport threadingmylock = threading.RLock()class Crawler:...
分类:
编程语言 时间:
2015-10-20 17:44:52
阅读次数:
278
以下为nginx.conf 的配置user root root;worker_processes 1;events { worker_connections 1024;}http { include mime.types; default_type applica...
分类:
其他好文 时间:
2015-10-20 17:42:21
阅读次数:
145
1、首先下载好微软进程查看工具procexp 2、双击打开procexp,鼠标左键点击并长按 procexp 菜单栏 Help下方的图标,拉到广告窗口,然后放开,就会自动定位的所在进程; 3、找到可恶的广告元凶,打开任务管理器查看...
分类:
其他好文 时间:
2015-10-20 16:41:29
阅读次数:
679
真机运行下,项目在iOS8.4下运行正常,但是一旦换到iOS7.0和7.1就报这个错误,clear一下,删除真机上原有的app,仍然没有任何作用,捣鼓了很久终于找到问题所在,解决如下: bulid settings??-...
1.content_main.xml //输入框
<EditText
????android:layout_width="wrap_content"
????android:layout_height="wrap_content"
????android:inputType="textPassword"
????android:ems="10"
??...
分类:
其他好文 时间:
2015-10-20 16:40:00
阅读次数:
282
㈠CREATE TRIGGER语法 CREATE TRIGGER trigger_name trigger_time trigger_event ? ? ON tbl_name FOR EACH ROW trigger_stmt 触发程序是与表有关的命名数据库对象,当表上出现特定事件时,将激活该对象。 触发...
分类:
数据库 时间:
2015-10-20 16:38:36
阅读次数:
179
1、在build下选择generate signed apk,如下图所示: 2、选择打包的密钥库:可以创建新的或者选择已经存在的。 创建新库如下: 选择已有库如下: 3、输入密钥库密码,密钥名称,密钥密码后点击next 4、点击finis...
分类:
移动开发 时间:
2015-10-20 16:41:18
阅读次数:
237
redis是目前比较火爆的nosql开源软件。他因为丰富的数据类型和每秒80k+的速度对有高并发,大访问量要求的应用场景是很好的选择。我用redis主要用来做数据的cache。以及分布式系统中session的集中...
分类:
其他好文 时间:
2015-10-20 16:38:55
阅读次数:
264
Mixin用于定于复用方法,并在其他Component中使用 var?SetIntervalMixin?=?{
??componentWillMount:?function()?{????//生命周期开始回调
????this.intervals?=?[];
??},
??setInterval:?f...
分类:
其他好文 时间:
2015-10-20 16:39:34
阅读次数:
179
更新: 对于自定义属性资源,现在不实用http://schemas.android.com/apk/res/<Packge name> 的形式了, 统一用? "http://schemas.android.com/apk/res-auto" Android应用程序将所有的静态资源都封装在了APK文件中...
分类:
移动开发 时间:
2015-10-20 16:39:03
阅读次数:
202
参考http://bbs.csdn.net/topics/300107093?5楼 使用DATEDIFF,MSDN介绍 select?*?from?a?where?todate?between?‘2008-01-03?13:47:00‘?and?‘2008-1-3?13:55:00‘
????and?datediff(mi,‘2008-01-...
分类:
数据库 时间:
2015-10-20 16:39:02
阅读次数:
204
使用ObjectAnimator设置动画 ? ? ? ? ? ? ? ? ?? :http://blog.csdn.net/new_abc/article/details/40106569 Android Property Animation 属性动画 ? ? ? ? ? ? ? ? ?? :http://blog.csdn....
分类:
其他好文 时间:
2015-10-20 16:37:28
阅读次数:
182
aspose实现Office转Pdf关键代码:? jar包:? aspose-words-14.6.0.jar? aspose-cells-10.8.jar? aspose.slides-14.4.0.jar? aspose-diagram-2.1.0.jar? protected?void?realTransform(InputStream?in,?...
分类:
Web程序 时间:
2015-10-20 16:37:26
阅读次数:
648
一. Framework about. ????1. Spring Framework ????????(1)http://projects.spring.io/spring-framework/? ?Spring的官方网站,包括 Spring Framework reference?documentation ?以及 API ? ...
分类:
Web程序 时间:
2015-10-20 16:38:48
阅读次数:
162
?Azure RemoteApp 基于 Microsoft Auzre,拥有丰富的计算资源、网络资源,同时享有 SLA 保障。?Auzre RemoteApp 帮助用户保持高效率的工作,无论他们身在何处、使用何种设备(Windows、Mac OS、iOS、Android),只要连接到 Internet 便可在安装了 Microsoft RemoteApp 客户端的设备上,像在本地运行一样,访问和使...
分类:
移动开发 时间:
2015-10-20 16:36:35
阅读次数:
186
当TimerTask实例通过schedule方法使用之后,不能通过schedule方法调用第二次,如果重复使用就会抛异常TimerTask is scheduled already。当你重新想利用这个timertask时,那么你只能重新获得一个实例,最好是写成类:1 class MyTimerTa....
分类:
其他好文 时间:
2015-10-20 16:34:54
阅读次数:
190