1、扩展类SQLiteOpenHelperxxSQLiteHelper extendsSQLiteOpenHelperpublic xxSQLiteHelper(Context context,String name,CursorFactory factory,int version){ surp....
分类:
移动开发 时间:
2014-10-15 20:21:21
阅读次数:
169
public class NetworkProber {
/**
* 网络是否可用
*
* @param activity
* @return
*/
public static boolean isNetworkAvailable(Context context) {
ConnectivityManager connectivity = (Connectivit...
分类:
移动开发 时间:
2014-10-15 19:20:41
阅读次数:
154
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the Ser...
分类:
其他好文 时间:
2014-10-15 18:19:41
阅读次数:
186
servlet容器是用来处理请求servlet资源,并为Web客户端填充response对象的模块。在上一篇文章(也就是书的第四章)我们设计了SimpleContainer类,让他实现Container接口,也基本完成了容器的作用。但是我们得知道在实际的tomcat中有4类容器:
Engine: 表示整个Catalina servlet引擎;
Host: 包含一个或多个Context容器的虚拟...
分类:
其他好文 时间:
2014-10-15 15:59:11
阅读次数:
248
当使用CreateProcess调用时,系统将创建一个进程和一个主线程。CreateThread将在主线程的基础上创建一个新线程,大致做如下步骤:
1在内核对象中分配一个线程标识/句柄,可供管理,由CreateThread返回
2把线程退出码置为STILL_ACTIVE,把线程挂起计数置1
3分配context结构
4分配两页的物理存储以准备栈,保护页设置为PAGE_REA...
分类:
其他好文 时间:
2014-10-15 15:46:00
阅读次数:
216
1、通过Context.getExternalFilesDir()方法可以获取到 SDCard/Android/data/你的应用的包名/files/ 目录,一般放一些长时间保存的数据通过Context.getExternalCacheDir()方法可以获取到 SDCard/Android/data...
分类:
移动开发 时间:
2014-10-15 10:23:10
阅读次数:
184
实现了 柱状图 根据 SeekBar的滑动 改变的效果:
图示效果:
自定义View的代码:
package com.example.coustomviewdemo;
import android.R.color;
import android.content.Context;
import android.graphics.Canvas;
import andro...
分类:
移动开发 时间:
2014-10-15 00:29:39
阅读次数:
356
context.Response.ContentType=encode;using(StreamWriterwriter=newStreamWriter(context.Response.OutputStream,UTF8)){writer.Write(str);}上面代码常会报错:Bytes to...
分类:
其他好文 时间:
2014-10-14 20:15:59
阅读次数:
193
/**
* 声明一个抽象的解释操作
* @author stone
*
*/
public interface Interpreter {
public void interpret(Context context); //实际中,可以有个返回的类型,定义解释出的数据对象
}
public class XmlSaxInterpreter implements Interpreter...
分类:
编程语言 时间:
2014-10-14 19:23:49
阅读次数:
167
package com.example.coustomviewdemo;
import android.R.interpolator;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
impo...
分类:
移动开发 时间:
2014-10-14 19:22:59
阅读次数:
172