首页 > 2014年10月17日 > 全部分享
textAppearance的属性设置
android:textAppearance="?android:attr/textAppearanceSmall" android:textAppearance="?android:attr/textAppearanceMedium"android:textAppearance="?android...
分类:移动平台   时间:2014-10-17 15:25:04    收藏:0  评论:0  赞:0  阅读:291
JAVA获取随机数
在Java中我们能够使用java.util.Random类来产生一个随机数发生器。它有两种形式的构造函数,各自是Random()和Random(long seed)。Random...
分类:编程语言   时间:2014-10-17 15:24:54    收藏:0  评论:0  赞:0  阅读:231
Javascript版经典游戏之《扫雷》
翻出年初写的游戏贴上来,扫雷相信大家都玩过,先上图:源码:Javascript版扫雷 时间:炸弹:下载试玩:Javascript版《扫雷》
分类:编程语言   时间:2014-10-17 15:24:44    收藏:0  评论:0  赞:0  阅读:309
JSON基础
JSON(JavaScript Object Notation) 是一种轻量级的数据交换格式。易于人阅读和编写。同时也易于机器解析和生成。它基于JavaScript Programming Language, Standard ECMA-262 3rd Edition - December 1999...
分类:Web开发   时间:2014-10-17 15:24:34    收藏:0  评论:0  赞:0  阅读:244
android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
原博客地址:http://aijiawang-126-com.javaeye.com/blog/662336在Activity中newSpinner是我把mContext传入,但是出了 android.view.WindowManager$BadTokenException: Unable to a...
分类:移动平台   时间:2014-10-17 15:24:24    收藏:0  评论:0  赞:0  阅读:433
单链表的递归与非递归实现
一:递归版本 1 class LinkList 2 { 3 public class LinkNode 4 { 5 public int data; 6 7 public LinkNode next; 8 ...
分类:其他   时间:2014-10-17 15:24:14    收藏:0  评论:0  赞:0  阅读:288
XCode6.0的iOS免证书真机测试方法(MAC及黑苹果均有效)
目前在XCode上开发的iOS程序只能在模拟器Simulator中运行,如果要放到真机上测试,需要苹果官方认证的开发者账号,购买开发者证书iDP,99美金一年啊!!!作为刚开始学习iOS编程的菜鸟,这么大手笔花钱实在是肉疼。。。经过一番折腾,借鉴各种大神的帖子,终于成功在真机上编译运行成功!免费的哦...
分类:移动平台   时间:2014-10-17 15:24:04    收藏:0  评论:0  赞:0  阅读:192
extjs MVC模式的个人看法
针对一个后台管理页面是mvc模式,后台也是mvc模式下的项目,要怎么去熟悉呢?首先以我个人的认解,先从后台的管理界面来看,会有control,model,store,view;其中先看view的代码,因为这些代码表示了后台业务的表现,从view的代码中我们可以看出model是基本的实体,而store...
分类:Web开发   时间:2014-10-17 15:23:54    收藏:0  评论:0  赞:0  阅读:336
练习八 spool导出
sqlplus -s username/password@sidset trimspool on;set linesize 120;set pagesize 2000;set newpage 1;set heading off;set term off;spool sys_user.txt;sele...
分类:其他   时间:2014-10-17 15:23:44    收藏:0  评论:0  赞:0  阅读:213
ci总结
1、创建模型,在模型中加载$this->load->database();2、在模型中写入想实现的功能方法3、在控制器中加载辅助函数和模型,$this->load->model("model名"),就可以使用model中的方法,数组变量通过控制器传给视图4、创建视图,从控制器中接收数据注意几点:加载...
分类:其他   时间:2014-10-17 15:23:34    收藏:0  评论:0  赞:0  阅读:215
the java.lang.UnsatisfiedLinkError: JD-Eclipse compile error
Start looking decompile tool that determines JD-Eclipse intends to use the online upgrade, sad destroy the machine does not , and led directly to ente...
分类:编程语言   时间:2014-10-17 15:23:24    收藏:0  评论:0  赞:0  阅读:264
简述浏览器事件模型
浏览器里事件如何绑定,以及事件是如何传播并触发的。
分类:其他   时间:2014-10-17 15:23:14    收藏:0  评论:0  赞:0  阅读:293
Eclipse: Resource is out of sync with the file system when publishing to tomcat server on Eclipse
Link:http://stackoverflow.com/questions/4343735/avoiding-resource-is-out-of-sync-with-the-filesystemhttp://hi.baidu.com/golotus/item/2f9713d03b8f9414d...
分类:系统服务   时间:2014-10-17 15:23:04    收藏:0  评论:0  赞:0  阅读:327
Visual Studio 2010: 调试引用的dll的代码?
right click the solution in the Solution Explorer-> Properties-> Debug ->Enable Debuggers-> Enable unmanaged code debugging
分类:其他   时间:2014-10-17 15:22:54    收藏:0  评论:0  赞:0  阅读:279
Eclipse: JPA problem: Eclipse does not recognize content of persistence.xml
Link:http://stackoverflow.com/questions/3701901/eclipse-does-not-recognize-content-of-persistence-xml引用:I fixed the problem the following way (I'm usi...
分类:系统服务   时间:2014-10-17 15:22:44    收藏:0  评论:0  赞:0  阅读:283
用async 解放你的大脑
在js中,代码嵌套和代码回调非常常见,不仅编写麻烦而且异常反人类。让我等码农很是头痛function() {function() {function() {function() {//pass}}}}这是一个常规的嵌套,如果每个function 的逻辑处理都比较多的话,会导致整个代码非常长,不仅编码...
分类:其他   时间:2014-10-17 15:22:34    收藏:0  评论:0  赞:0  阅读:251
设计模式之解释器模式(Interpreter)摘录
23种GOF设计模式一般分为三大类:创建型模式、结构型模式、行为模式。创建型模式抽象了实例化过程,它们帮助一个系统独立于怎样创建、组合和表示它的那些对象。一个类创建型模式使用继承改变被实例化的类,而一个对象创建型模式将实例化托付给还有一个对象。创建型模式有两个不断出现的主旋律。第一,它们都将关于该系...
分类:其他   时间:2014-10-17 15:22:24    收藏:0  评论:0  赞:0  阅读:337
Json在asp.net开发中的应用
一、asp.net后台返回Json数据,前台js解析在后台读取数据,并手动封装成Json格式: public ContentResult getUsersByOrgId(int Id) { DataTable table = UsersLogic.g...
分类:Web开发   时间:2014-10-17 15:22:14    收藏:0  评论:0  赞:0  阅读:285
语句(while/ do while / try catch finally)
/* while int n = 1; //此处如果是for循环, for(int n=1;n<6;n++) while (n < 6) { Console.WriteLine ("结果是{0}",n); //留空的表示方法!//Console.Write("我是:{0},你是:{1},我们:{.....
分类:其他   时间:2014-10-17 15:22:04    收藏:0  评论:0  赞:0  阅读:800
另外一款超棒的响应式布局jQuery插件 – Freetile.js
在线演示我们曾经介绍过俩款知名的响应式布局插:isotope和masonary,今天我们这里再介绍一款相当不错的响应式布局插件 –Freetile.js,使用它同样可以生成超酷的动态布局效果。相信大家一定会喜欢!主要特性Freetie来自于Assemblage和Assemblage Plus的内建布...
分类:Web开发   时间:2014-10-17 15:21:54    收藏:0  评论:0  赞:0  阅读:225
1542条   上一页 1 ... 36 37 38 39 40 ... 78 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!