在写Android的XML布局文件时,在ImageView或ImageButton中经常会碰到一个提示:Missing contentDescription
attribute on image.这个属性是做什么的呢?其实这个属性是方便一些生理功能有缺陷的人使用应用程序的。比如我们有一个ImageV...
分类:
移动开发 时间:
2014-05-27 01:02:17
阅读次数:
284
转载自http://www.cnblogs.com/jams742003/category/225387.htmlJson序列化和反序列化指的是:对象序列化为JSON,并可用于从JSON反序列化对象在.net
3.5中名字空间:System.Runtime.Serialization.Json但程序...
分类:
Web程序 时间:
2014-05-24 05:06:17
阅读次数:
377
using System;using
System.Collections.Generic;using System.IO;using System.Linq;using
System.Reflection;using System.Runtime.InteropServices;namespace...
分类:
其他好文 时间:
2014-05-23 10:59:24
阅读次数:
223
在下载,安装前先说下下面几个概念JDK,SDK,JRE,JVM
◆JDK Java Develop Kit (Java 开发包)
◆SDK Software Develop kit, 以前JDK叫做Java software develop kit,后来出了1.2版本后就改名叫JDK了,省时省力, 节约成本。
◆JRE Java runtime environment 我们的最简单的Hell...
分类:
其他好文 时间:
2014-05-22 10:25:23
阅读次数:
387
【题目】
Given a sorted array of integers, find the starting and ending position of a given target value.
Your algorithm's runtime complexity must be in the order of O(log n).
If the target is not found in the array, return [-1, -1].
For example,
Given [5...
分类:
其他好文 时间:
2014-05-22 06:44:39
阅读次数:
265
using System;using System.Collections.Generic;using
System.Linq;using System.Runtime.InteropServices;using System.Text;namespace
Common{ public cla...
分类:
数据库 时间:
2014-05-21 20:41:53
阅读次数:
333
using System;using
System.Runtime.InteropServices;namespace FastReboot{ static class Program {
private delegate uint ZwShutdownSystem(int...
分类:
其他好文 时间:
2014-05-21 17:18:09
阅读次数:
391
1获得当前屏幕中鼠标的位置
int i = MousePosition.X;
int j = MousePosition.Y;
这是control类中的方法。
2移动鼠标
首先引入dll
[System.Runtime.InteropServices.DllImport("user32")]
private st...
分类:
其他好文 时间:
2014-05-21 07:28:51
阅读次数:
229
对nutch添加中文网站抓取功能。1、中文网页抓取A、调整mysql配置,避免存入mysql的中文出现乱码。修改${APACHE_NUTCH_HOME}/runtime/local/conf/gora.properties################################MySQLproperties################################gora.sqlstore.jdbc.driver=com..
分类:
Web程序 时间:
2014-05-20 19:17:55
阅读次数:
539
题目:
Given an array of integers, every element appears
three times except for one. Find that single one.
Note:
Your algorithm should have a linear runtime complexity. Could you implem...
分类:
其他好文 时间:
2014-05-20 16:22:52
阅读次数:
241