为什么会写这篇 最近写博客在 Cnblog 上面写博客, 发现图片不能复制了直接粘贴上,这对于把博客当随手笔记的人来说无疑非常痛苦。求助于博客园,他们让我用 Windows Live Writer 试试。我查了下大家推荐的除了 WLW 还有直接用 Word 2013 发布的。这么高端,我果然 low...
分类:
Windows开发 时间:
2015-05-26 12:05:48
收藏:
0 评论:
0 赞:
0 阅读:
342
1.Java的字节流:InputStream是所有字节输入流的祖先,而OutputStream是所有字节输出流的祖先。2.Java的字符流:Reader是所有读取字符串输入流的祖先,而writer是所有输出字符串的祖先。InputStream,OutputStream,Reader,writer都是...
分类:
编程语言 时间:
2015-05-26 12:05:38
收藏:
0 评论:
0 赞:
0 阅读:
228
题目:Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that surrounded reg...
分类:
其他 时间:
2015-05-26 12:05:18
收藏:
0 评论:
0 赞:
0 阅读:
235
上一篇的文章中说到了一些个人习惯的东西以及一些简单的项目配置,这一篇文章我们来进一步完善一些东西.首先,打开编译以后的客户端执行,会看到一大堆的fileutils加载luac文件的提示,在终端显示一大堆,挺烦人的,我做的第一件事就是去修改他.这个很简单,有两种做法,第一种是在c++部分添加调用1 c...
分类:
其他 时间:
2015-05-26 12:05:08
收藏:
0 评论:
0 赞:
0 阅读:
375
Eclipse快捷键大全(转载) Ctrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)Alt...
分类:
系统服务 时间:
2015-05-26 12:04:58
收藏:
0 评论:
0 赞:
0 阅读:
242
js方式的页面跳转1.window.location.href方式 2.window.navigate方式跳转 3.window.loction.replace方式实现页面跳转,注意跟第一种方式的区别有3个jsp页面(1.aspx, 2.aspx, 3.aspx),进系统默认的是1.aspx,当我进...
分类:
Web开发 时间:
2015-05-26 12:04:48
收藏:
0 评论:
0 赞:
0 阅读:
232
mask demo效果演示:http://dtdxrk.github.io/game/css3-demo/mask.htmlmask 的属性:-webkit-mask-image:url | gradient /*可以使用图片或渐变作为遮罩层*/-webkit-mask-repeat:repeat ...
分类:
Web开发 时间:
2015-05-26 12:04:38
收藏:
0 评论:
0 赞:
0 阅读:
370
如何进行drawable跟bitmap的相互转化
分类:
其他 时间:
2015-05-26 12:04:28
收藏:
0 评论:
0 赞:
0 阅读:
238
百度uploader Demo文件上传 选择图片 struts配置: 服务器后台action方法://上传文件对象(和表单type=file的name值一致) private File upload []; //文件名 privat...
分类:
Web开发 时间:
2015-05-26 12:04:08
收藏:
0 评论:
0 赞:
0 阅读:
1961
一、先说Service服务。 1、利用setAction()方法来指定启动的Service服务1 Intent intent = new Intent();2 intent.setAction("ServiceAction");3 startService(intent); 2、使用Intent.....
分类:
移动平台 时间:
2015-05-26 12:03:58
收藏:
0 评论:
0 赞:
0 阅读:
501
Web ServiceIt is based on SOAP and return data in XML form.It support only HTTP protocol.It is not open source but can be consumed by any client that ...
分类:
Windows开发 时间:
2015-05-26 12:03:48
收藏:
0 评论:
0 赞:
0 阅读:
195
如上图:t1,t2代表要选择的时间段,t3,t4代表系统时间。那么如果要获取选中时间段所有的交集为:条件1 and ((t3>t1 and t1>t2) or (t3<t2 and t2<t4) or (t3<t2 and t1<t4))....条件3...PS:条件1,条件3代表其他条件,选中时间...
分类:
数据库技术 时间:
2015-05-26 12:03:18
收藏:
0 评论:
0 赞:
0 阅读:
472
Action(){ web_cleanup_cookies(); web_cache_cleanup(); web_url("entrypoint", "URL=http://e34jbsl00430.devillo.com:8080/entrypoint/...
分类:
Web开发 时间:
2015-05-26 12:02:58
收藏:
0 评论:
0 赞:
0 阅读:
3959
In a default installation, Mac OS runs on a case-preserving but case-insensitive filesystem. This type of filesystem is not supported by git and wil.....
分类:
系统服务 时间:
2015-05-26 12:02:48
收藏:
0 评论:
0 赞:
0 阅读:
352
1 使用tookit2d中GUI实现按钮效果 1.1 component-》2D tookit-》deprecated-》GUI—》toolkit2D button 1.2 添加鼠标按下抬起的精灵,添加声音,添加被绑定的在hirerarchy中的对象,添加message name(即脚本中自定义.....
分类:
其他 时间:
2015-05-26 12:02:38
收藏:
0 评论:
0 赞:
0 阅读:
77
给UILabel添加下划线1 NSMutableAttributedString *content = [[NSMutableAttributedString alloc]initWithString:text];2 NSRange contentRange = {0,[content l...
分类:
移动平台 时间:
2015-05-26 12:02:08
收藏:
0 评论:
0 赞:
0 阅读:
235
从网上看了这篇关于表单input按钮的浏览器兼容性问题,总结的还不错,所以copy下来学习下。input按钮在各个浏览器之间的兼容性问题,看下边这段代码:input.item {background: #4D90FE;border: 1px solid #4D90BB;color: white;}这...
分类:
其他 时间:
2015-05-26 12:01:59
收藏:
0 评论:
0 赞:
0 阅读:
191
文章来自 Android技术内幕 系统卷转:http://www.linuxidc.com/Linux/2011-08/40508.htm什么是IPC机制以及IPC机制的种类在Linux中,是以进程为单位分配和管理资源的。出于保护机制,一个进程不能直接访问另一个进程的资源,也就是说,进程之间互相封闭...
分类:
其他 时间:
2015-05-26 12:01:48
收藏:
0 评论:
0 赞:
0 阅读:
371
1.创建表空间create tablespaceexample_tablespacedatafile 'e:\****.dbf' size 10mreuseautoextendonnext 1mmaxsize unlimited;2.创建用户,指定表空间,临时表空间create useruserna...
分类:
其他 时间:
2015-05-26 12:01:38
收藏:
0 评论:
0 赞:
0 阅读:
257
复制标题和链接,发送给你的好友-石家庄苗木|石家庄新娘跟妆
分类:
其他 时间:
2015-05-26 12:01:18
收藏:
0 评论:
0 赞:
0 阅读:
174