android数组对象操作

lrenwang , 2011/05/04 14:04 , android , 评论(0) , 阅读(616) , Via 本站原创
ArrayList> list  = new ArrayList>();

//添加
Map map = new HashMap();
map.put("key","value");
list.add(map);


//循环
for(Map map:list){
  String value = map.get("key");
}


Android内置的SQLite操作方法

lrenwang , 2011/05/03 17:28 , android , 评论(0) , 阅读(566) , Via 本站原创

使用Android SDK内自带的SQLiteOpenHelper,可以方便的对SQLite数据库进行操作,由于手机平台所限,手机上的SQLite不能进行非常复杂的select,但是一般的增删改查功能也相当齐全,足够满足移动平台的使用。

首先,我们需要继承SQLiteOpenHelper这个类,并覆盖两个抽象方法

public class TestDatabase extends SQLiteOpenHelper {
        public TestDatabase(Context context) {
                // 创建一个名为test_db的数据库
                super(context, "test_db", null, 1);
        }

        @Override
        public void onCreate(SQLiteDatabase db) {
                // 执行时,若表不存在,则创建之,注意SQLite数据库中必须有一个_id的字段作为主键,否则查询时将报错
                String sql = "create table mytable (_id integer primary key autoincrement, stext text)";
                db.execSQL(sql);
        }

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
                // 数据库被改变时,将原先的表删除,然后建立新表
                String sql = "drop table if exists mytable";
                db.execSQL(sql);
                onCreate(db);
        }
}

随后就是增删改查的方法

public Cursor select() {
        SQLiteDatabase db = getReadableDatabase();
        Cursor cur = db.query("mytable", null, null, null, null, null, null);
        return cur;
}

public long insert(String text){
        SQLiteDatabase db = getWritableDatabase();
        ContentValues cv = new ContentValues();
        cv.put("stext", text);
        long row = db.insert("mytable", null, cv);
        return row;
}

public int delete(int id){
        SQLiteDatabase db = getWritableDatabase();
        String where = "_id=?";
        String[] whereValue = {Integer.toString(id)};
        return db.delete("mytable", where, whereValue);
}

public int update(int id, String text){
        SQLiteDatabase db = getWritableDatabase();
        String where = "_id=?";
        String[] whereValue = {Integer.toString(id)};
        ContentValues cv = new ContentValues();
        cv.put("stext", text);
        return db.update("mytable", cv, where, whereValue);
}

其中db.query方法参数比较复杂,这里全部置null是为了图个省事,它的具体参数如下:
public Cursor query (String table,String[] columns, String selection, String[] selectionArgs, StringgroupBy, String having, String orderBy)

table: 表名称,不可为null
columns: 要返回的列名数组,置null表示返回所有列
selection: where子句,如果不需要where子句则置null,写法如"_id=?",此处将要填的参数写为?,供下方的selectionArgs填充
selectionArgs: where子句的所需值,该数组将依次填充selection中的每一个问号。
groupby: GroupBy子句
having: Having子句
orderBy: order by 子句

好了,操作SQLite就这么简单,当然与此同时,还要做一个界面用来显示数据,本文就不再多言了

判断Android手机是否联网

lrenwang , 2011/04/26 08:25 , android , 评论(0) , 阅读(554) , Via 本站原创
方法如下:

ConnectivityManager cManager=(ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo info = cManager.getActiveNetworkInfo();
  if (info != null && info.isAvailable()){
       //do something
       //能联网
        return true;
  }else{
       //do something
       //不能联网
        return false;
  }

如果为True则表示当前Android手机已经联网,可能是WiFi或GPRS、HSDPA等等,具体的可以通过ConnectivityManager 类的getActiveNetworkInfo() 方法判断详细的接入方式。

同时要在manifest里面加个权限
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

android权限列表

lrenwang , 2011/04/26 08:24 , android , 评论(0) , 阅读(559) , Via 本站原创
        android.permission.ACCESS_CHECKIN_PROPERTIES
  允许读写访问”properties”表在checkin数据库中,改值可以修改上传( Allows read/write access to the “properties” table in the checkin database, to change values that get uploaded)
  android.permission.ACCESS_COARSE_LOCATION
  允许一个程序访问CellID或WiFi热点来获取粗略的位置(Allows an application to access coarse (e.g., Cell-ID, WiFi) location)
  android.permission.ACCESS_FINE_LOCATION
  允许一个程序访问精良位置(如GPS) (Allows an application to access fine (e.g., GPS) location)
  android.permission.ACCESS_LOCATION_EXTRA_COMMANDS
  允许应用程序访问额外的位置提供命令(Allows an application to access extra location provider commands)
  android.permission.ACCESS_MOCK_LOCATION
  允许程序创建模拟位置提供用于测试(Allows an application to create mock location providers for testing)
  android.permission.ACCESS_NETWORK_STATE
  允许程序访问有关GSM网

Linux shell脚本全面学习

lrenwang , 2011/03/08 13:34 , Linux , 评论(0) , 阅读(512) , Via 本站原创
1. Linux 脚本编写基础

1.1 语法基本介绍

1.1.1 开头

程序必须以下面的行开始(必须方在文件的第一行):

#!/bin/sh

  符号#!用来告诉系统它后面的参数是用来执行该文件的程序。在这个例子中我们使用/bin/sh来执行程序。

  当编辑好脚本时,如果要执行该脚本,还必须使其可执行。
  要使脚本可执行:

编译 chmod +x filename 这样才能用./filename 来运行

1.1.2 注释

  在进行shell编程时,以#开头的句子表示注释,直到这一行的结束。我们真诚地建议您在程序中使用注释。

如果您使用了注释,那么即使相当长的时间内没有使用该脚本,您也能在很短的时间内明白该脚本的作用

及工作原理。

1.1.3 变量

  在其他编程语言中您必须使用变量。在shell编程中,所有的变量都由字符串组成,并且您不需要对变量

进行声明。要赋值给一个变量,您可以这样写:

#!/bin/sh

#对变量赋值:

a="hello world"

# 现在打印变量a的内容:

echo "A is:"

echo $a

有时候变量名很容易与其他文字混淆,比如:

num=2

echo "this is the $numnd"

这并不会打印出"this is the 2nd",而仅仅打印"this is the ",因为shell会去搜索变量numnd的值,

但是这个变量时没有值的。可以使用花括号来告诉shell我们要打印的是num变量:

num=2

echo "this is the ${num}nd"

  这将打印: this is the 2nd

1.1.4 环境变量

由export关键字处理过的变量叫做环境变量。我们不对环境变量进行讨论,因为通常情况下仅仅在登录

脚本中使用环境变量。

1.1.5 Shell命令和流程控制

在shell脚本中可以使用三类命令:

1)Unix 命令:

  虽然在shell脚本中可以使用任意的unix命令,但是还是由一些相对更常用的命令。这些命令通常是用来

进行文件和文字操作的。

常用命令语法及功能

  echo "some text": 将文字内容打印在屏幕上

  ls: 文件列表

  wc –l filewc -w filewc -c file: 计算文件行数计算文件中的单词数计算文件中的字符数

  cp sourcefile destfile: 文件拷贝

  mv oldname newname : 重命名文件或移动文件

  rm file: 删除文件

  grep 'pattern' file: 在文件内搜索字符串比如:grep 'searchstring' file.txt

  cut -b colnum file: 指定欲显示的文件内容范围,并将它们输出到标准输出设备比如:输出

每行第5个到第9个字符cut -b5-9 file.txt千万不要和cat命令混淆,

这是两个完全不同的命令

  cat file.txt: 输出文件内容到标准输出设备(屏幕)上

  file somefile: 得到文件类型

  read var: 提示用户输入,并将输入赋值给变量

  sort file.txt: 对file.txt文件中的行进行排序

  uniq: 删除文本文件中出现的行列比如: sort file.txt | uniq

  expr: 进行数学运算Example: add 2 and 3expr 2 "+" 3

  find: 搜索文件比如:根据文件名搜索find . -name filename -print

  tee: 将数据输出到标准输出设备(屏幕) 和文件比如:somecommand | tee outfile

  basename file: 返回不包含路径的文件名比如: basename /bin/tux将返回 tux

  dirname file: 返回文件所在路径比如:dirname /bin/tux将返回 /bin

  head file: 打印文本文件开头几行

  tail file : 打印文本文件末尾几行

  sed: Sed是一个基本的查找替换程序。可以从标准输入(比如命令管道)读入文本,并将

结果输出到标准输出(屏幕)。该命令采用正则表达式(见参考)进行搜索。

不要和shell中的通配符相混淆。比如:将linuxfocus 替换为

LinuxFocus :cat text.file | sed 's/linuxfocus/LinuxFocus/' > newtext.file

  awk: awk 用来从文本文件中提取字段。缺省地,字段分割符是空格,可以使用-F指定其他分割符。

cat file.txt | awk -F, '{print $1 "," $3 }'这里我们使用,作为字段分割符,同时打印

第一个和第三个字段。如果该文件内容如下: Adam Bor, 34, IndiaKerry Miller, 22, USA

命令输出结果为:Adam Bor, IndiaKerry Miller, USA
分页: 8/36 第一页 上页 3 4 5 6 7 8 9 10 11 12 下页 最后页 [ 显示模式: 摘要 | 列表 ]