1.Uri

通用资源标志符(Universal Resource Identifier, 简称"URI")。

Uri代表要操作的数据,Android上可用的每种资源 - 图像、视频片段等都可以用Uri来表示。

URI一般由三部分组成:

,URI主要分三个部分:scheme, authority and path。其中authority又分为host和port。格式如下:

scheme://host:port/path
举个实际的例子:
content://com.example.project:200/folder/subfolder/etc
\---------/  \---------------------------/ \---/ \--------------------------/
scheme                 host               port        path
                \--------------------------------/
                          authority

现在大家应该知道data flag中那些属性的含义了吧,看下data flag
<data android:host="string"
      android:mimeType="string"
      android:path="string"
      android:pathPattern="string"
      android:pathPrefix="string"
      android:port="string"
      android:scheme="string" />
但是我们在程序中一般是不直接用URI来标识CP的,是的,正如我们通常见到的用定义的常量来标识。例如standard CP中的Contacts,我们就用Contacts.People.CONTENT_URI来标识Contacts CP中People这个表。那么要标识某个具体的人怎么办呢? 这就用到了ContentUris.withAppendedId() 和 Uri.withAppendedPath()。例如我们要表示content://contacts/people/20,那么我们就可以用如下语句:
Uri uri = ContentUris.withAppendedId(People.CONTENT_URI, 20); 或者
Uri uri = Uri.withAppendedPath(People.CONTENT_URI, "20");

访问资源的命名机制。

存放资源的主机名。

资源自身的名称,由路径表示。

Android的Uri由以下三部分组成: "content://"、数据的路径、标示ID(可选)

举些例子,如: 

所有联系人的Uri: content://contacts/people

某个联系人的Uri: content://contacts/people/5

所有图片Uri: content://media/external

某个图片的Uri:content://media/external/images/media/4

我们很经常需要解析Uri,并从Uri中获取数据。

Android系统提供了两个用于操作Uri的工具类,分别为UriMatcher 和ContentUris 。

虽然这两类不是非常重要,但是掌握它们的使用,会便于我们的开发工作。

下面就一起看一下这两个类的作用。

2.UriMatcher

UriMatcher 类主要用于匹配Uri.

使用方法如下。

首先第一步,初始化:

  1. UriMatcher matcher = new UriMatcher(UriMatcher.NO_MATCH);
  1. UriMatcher matcher = new UriMatcher(UriMatcher.NO_MATCH);

第二步注册需要的Uri:

  1. matcher.addURI("com.yfz.Lesson", "people", PEOPLE);
  2. matcher.addURI("com.yfz.Lesson", "person/#", PEOPLE_ID);
  1. matcher.addURI("com.yfz.Lesson", "people", PEOPLE);
  2. matcher.addURI("com.yfz.Lesson", "person/#", PEOPLE_ID);

第三部,与已经注册的Uri进行匹配:

  1. Uri uri = Uri.parse("content://" + "com.yfz.Lesson" + "/people");
  2. int match = matcher.match(uri);
  3. switch (match)
  4. {
  5. case PEOPLE:
  6. return "vnd.Android.cursor.dir/people";
  7. case PEOPLE_ID:
  8. return "vnd.android.cursor.item/people";
  9. default:
  10. return null;
  11. }
  1. Uri uri = Uri.parse("content://" + "com.yfz.Lesson" + "/people");
  2. int match = matcher.match(uri);
  3. switch (match)
  4. {
  5. case PEOPLE:
  6. return "vnd.Android.cursor.dir/people";
  7. case PEOPLE_ID:
  8. return "vnd.Android.cursor.item/people";
  9. default:
  10. return null;
  11. }

match方法匹配后会返回一个匹配码Code,即在使用注册方法addURI时传入的第三个参数。

上述方法会返回"vnd.Android.cursor.dir/person".

总结:

--常量 UriMatcher.NO_MATCH 表示不匹配任何路径的返回码

--# 号为通配符

--* 号为任意字符

另外说一下,官方SDK说明中关于Uri的注册是这样写的:

  1. private static final UriMatcher sURIMatcher = new UriMatcher();
  2. static
  3. {
  4. sURIMatcher.addURI("contacts", "/people", PEOPLE);
  5. sURIMatcher.addURI("contacts", "/people/#", PEOPLE_ID);
  6. sURIMatcher.addURI("contacts", "/people/#/phones", PEOPLE_PHONES);
  7. sURIMatcher.addURI("contacts", "/people/#/phones/#", PEOPLE_PHONES_ID);
  8. sURIMatcher.addURI("contacts", "/people/#/contact_methods", PEOPLE_CONTACTMETHODS);
  9. sURIMatcher.addURI("contacts", "/people/#/contact_methods/#", PEOPLE_CONTACTMETHODS_ID);
  10. sURIMatcher.addURI("contacts", "/deleted_people", DELETED_PEOPLE);
  11. sURIMatcher.addURI("contacts", "/phones", PHONES);
  12. sURIMatcher.addURI("contacts", "/phones/filter/*", PHONES_FILTER);
  13. sURIMatcher.addURI("contacts", "/phones/#", PHONES_ID);
  14. sURIMatcher.addURI("contacts", "/contact_methods", CONTACTMETHODS);
  15. sURIMatcher.addURI("contacts", "/contact_methods/#", CONTACTMETHODS_ID);
  16. sURIMatcher.addURI("call_log", "/calls", CALLS);
  17. sURIMatcher.addURI("call_log", "/calls/filter/*", CALLS_FILTER);
  18. sURIMatcher.addURI("call_log", "/calls/#", CALLS_ID);
  19. }
  1. private static final UriMatcher sURIMatcher = new UriMatcher();
  2. static
  3. {
  4. sURIMatcher.addURI("contacts", "/people", PEOPLE);
  5. sURIMatcher.addURI("contacts", "/people/#", PEOPLE_ID);
  6. sURIMatcher.addURI("contacts", "/people/#/phones", PEOPLE_PHONES);
  7. sURIMatcher.addURI("contacts", "/people/#/phones/#", PEOPLE_PHONES_ID);
  8. sURIMatcher.addURI("contacts", "/people/#/contact_methods", PEOPLE_CONTACTMETHODS);
  9. sURIMatcher.addURI("contacts", "/people/#/contact_methods/#", PEOPLE_CONTACTMETHODS_ID);
  10. sURIMatcher.addURI("contacts", "/deleted_people", DELETED_PEOPLE);
  11. sURIMatcher.addURI("contacts", "/phones", PHONES);
  12. sURIMatcher.addURI("contacts", "/phones/filter/*", PHONES_FILTER);
  13. sURIMatcher.addURI("contacts", "/phones/#", PHONES_ID);
  14. sURIMatcher.addURI("contacts", "/contact_methods", CONTACTMETHODS);
  15. sURIMatcher.addURI("contacts", "/contact_methods/#", CONTACTMETHODS_ID);
  16. sURIMatcher.addURI("call_log", "/calls", CALLS);
  17. sURIMatcher.addURI("call_log", "/calls/filter/*", CALLS_FILTER);
  18. sURIMatcher.addURI("call_log", "/calls/#", CALLS_ID);
  19. }

这个说明估计已经是Google官方没有更新,首先是初始化方法,没有传参,那么现在初始化时,实际是必须传参的。 可以看一下Android2.2的源码,无参数的构造方法已经是private的了。

另外就是addURI这个方法,第二个参数开始时不需要"/", 否则是无法匹配成功的。

3.ContentUris

ContentUris 类用于获取Uri路径后面的ID部分

1)为路径加上ID: withAppendedId(uri, id)

比如有这样一个Uri

  1. Uri uri = Uri.parse("content://com.yfz.Lesson/people")
  1. Uri uri = Uri.parse("content://com.yfz.Lesson/people")

通过withAppendedId方法,为该Uri加上ID

  1. Uri resultUri = ContentUris.withAppendedId(uri, 10);
  1. Uri resultUri = ContentUris.withAppendedId(uri, 10);

最后resultUri为: content://com.yfz.Lesson/people/10

2)从路径中获取ID: parseId(uri)

  1. Uri uri = Uri.parse("content://com.yfz.Lesson/people/10")
  2. long personid = ContentUris.parseId(uri);
  1. Uri uri = Uri.parse("content://com.yfz.Lesson/people/10")
  2. long personid = ContentUris.parseId(uri);

最后personid 为 :10

附上实验的代码:

  1. package com.yfz;
  2. import com.yfz.log.Logger;
  3. import Android.app.Activity;
  4. import android.content.ContentUris;
  5. import android.content.UriMatcher;
  6. import android.net.Uri;
  7. import android.os.Bundle;
  8. public class Lesson_14 extends Activity {
  9. private static final String AUTHORITY = "com.yfz.Lesson";
  10. private static final int PEOPLE = 1;
  11. private static final int PEOPLE_ID = 2;
  12. //NO_MATCH表示不匹配任何路径的返回码
  13. private static final UriMatcher sURIMatcher = new UriMatcher(UriMatcher.NO_MATCH);
  14. static
  15. {
  16. sURIMatcher.addURI(AUTHORITY, "people", PEOPLE);
  17. //这里的#代表匹配任意数字,另外还可以用*来匹配任意文本
  18. sURIMatcher.addURI(AUTHORITY, "people/#", PEOPLE_ID);
  19. }
  20. @Override
  21. protected void onCreate(Bundle savedInstanceState) {
  22. super.onCreate(savedInstanceState);
  23. Logger.d("------ Start Activity !!! ------");
  24. Uri uri1 = Uri.parse("content://" + AUTHORITY + "/people");
  25. Logger.e("Uri:" + uri1);
  26. Logger.d("Match 1" + getType(uri1));
  27. Uri uri2 = Uri.parse("content://" + AUTHORITY + "/people" + "/2");
  28. Logger.e("Uri:" + uri2);
  29. Logger.d("Match 2" + getType(uri2));
  30. //拼接Uri
  31. Uri cUri = ContentUris.withAppendedId(uri1, 15);
  32. Logger.e("Uri:" + cUri);
  33. //获取ID
  34. long id = ContentUris.parseId(cUri);
  35. Logger.d("Uri ID: " + id);
  36. }
  37. private String getType(Uri uri) {
  38. int match = sURIMatcher.match(uri);
  39. switch (match)
  40. {
  41. case PEOPLE:
  42. return "vnd.android.cursor.dir/person";
  43. case PEOPLE_ID:
  44. return "vnd.android.cursor.item/person";
  45. default:
  46. return null;    }        } }

Android中Uri的使用相关推荐

  1. Android中URI的格式

    在Android中,为了使用数据集中管理模式,使用了ContentProvider来进行数据管理,在使用ContentProvider进行 数据交互时就需要用到URI.为了让客户端程序能够使用你的数据 ...

  2. Android中Uri 和Path之间的相互转化

    Android Uri to Path 现在遇到的常规Uri有两种: 媒体文件的Uri是content://, 表示这是一个数据库数据.去数据库查询正常返回. 其他的文件Uri是file://, 表示 ...

  3. android中uri的作用,Android UrlUri详细解析

    概述 在项目开发中,有时会遇到解析Url.Uri的需求,要从中得到链接中的相应字段.参数等.有多种实现方式,在这里总结一下应用到的. URL与URI的区别 Uri - 统一资源标志符 Url - 统一 ...

  4. Android中Uri和Path之间的转换

    Android Uri to Path 现在遇到的常规Uri有两种: 媒体文件的Uri是content://, 表示这是一个数据库数据.去数据库查询正常返回 其他的文件Uri是file://, 表示这 ...

  5. Android 中uri.parse()用法

    1,调web浏览器  Uri myBlogUri = Uri.parse("http://xxxxx.com");  returnIt = new Intent(Intent.AC ...

  6. Android中Uri和path file三者的相互转换

    一.path转file File file = new File(path); 二.path转uri Uri uri = Uri.parse(path); 三.uri转path /*** 将URI路径 ...

  7. Android 中Uri.parse()的作用

    博主前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住也分享一下给大家,

  8. android中的ContentProvider实现数据共享

    为了在应用程序之间交换数据,android中提供了ContentProvider,ContentProvider是不同应用程序之间进行数据交换的标准API.当一个应用程序需要把自己的数据暴露给其他程序 ...

  9. Android中的URI

    就Android平台而言,URI主要分三个部分:scheme, authority and path.其中authority又分为host和port.格式如下: scheme://host:port/ ...

最新文章

  1. 悲催的跨平台文献管理能力
  2. hdu 5101(二分)
  3. 计算机二级web题目(4)--CSS基础
  4. RPC-非阻塞通信下的同步API实现原理,以Dubbo为例
  5. python爬虫淘宝视频_Python2爬虫:以抓取淘宝MM为例(实战)
  6. css3中的新特性经典应用
  7. [推荐]查看Json输出的*最方便*的方法 (转)
  8. java 的数据类型转换_java数据类型转换汇总
  9. java集合输入存储_Java练习IO流使用Properties集合存储数据并...
  10. 定时器 Corn时间表达式
  11. 图像的上采样与下采样
  12. 使用文本标签做一个简单的自我介绍
  13. Moon Modeler v1.6.5功能和特点
  14. 网络笔记--交换机和路由器
  15. flutter学习笔记--传递信息
  16. 立场开源 | 电动锡膏挤出器
  17. 开发一个app应用的流程有哪些
  18. 北斗三号短报文的新特点
  19. Intellij IEDA 常用快捷键
  20. 如何做好上海微信自媒体平台

热门文章

  1. python seek tell_Python指针seektell详解
  2. android 默认光标大小设置,如何默认光标位置设置的EditText
  3. linux mysql 5.7 配置_linux下mysql5.7的安装配置
  4. matlab多项式相乘的法则_卷积计算与多项式乘法
  5. 对c语言课程的心得体会,C语言课程设计心得体会
  6. 安卓禁止ScrollView内的控件改变之后自动滚动
  7. java 6 26_WebSphere7.0 Java6.26安装
  8. es python demo
  9. python备份cisco交换机_Python备份Cisco交换机配置 | CN-SEC 中文网
  10. 将单向链表按某值分成左边小、中间相等、右边大的形式