`
rexsee
  • 浏览: 20675 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Rexsee API介绍:SMS短信读取

阅读更多

基于rexsee扩展的rexseeSMS,通过JS实现短信读取相关功能,如:

 

【函数】 JsonArray getContentUris()

【说明】 读取短信相关的所有数据库表的Uri地址。

【返回】 Json对象字符串,可以用eval('('+json+')')转换为JavaScript对象。

【参数】

【示例】

 

Html代码 
  1. alert(rexseeSMS.getContentUris());  
 

【函数】 JsonObjectArray get(int number)

【说明】 读取若干条短信。

【返回】 Json对象数组字符串,可以用eval('('+json+')')转换为JavaScript对象数组,注意,其中body字段是escape过的,使用前需要unescape。

【参数】 number:要读取的短信条数。

【示例】

 

Html代码 
  1. alert(rexseeSMS.get(10));  
  2. alert(unescape(eval('('+rexseeSMS.get(1)+')')[0].body));  
 

其它还有:

 

  • getUnread(int number):读取若干条未读短信;
  • getRead(int number):读取若干条已读短信;
  • getInbox(int number):从收件箱读取若干条短信;
  • getSent(int number):读取若干条已发短信;
  • getByThread(int threadID):读取会话中所有短信;
  • getThreads(int number):读取若干条会话;
  • getData(String selection, int number):根据条件读取若干条短信。

详细源码:

/* 
* Copyright (C) 2011 The Rexsee Open Source Project 
* 
* Licensed under the Rexsee License, Version 1.0 (the "License"); 
* you may not use this file except in compliance with the License. 
* You may obtain a copy of the License at 
* 
*      http://www.rexsee.com/CN/legal/license.html 
* 
* Unless required by applicable law or agreed to in writing, software 
* distributed under the License is distributed on an "AS IS" BASIS, 
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
* See the License for the specific language governing permissions and 
* limitations under the License. 
*/ 
 
package rexsee.communication;  
 
import rexsee.core.browser.JavascriptInterface;  
import rexsee.core.browser.RexseeBrowser;  
import rexsee.core.utilities.Escape;  
import android.content.ContentResolver;  
import android.content.Context;  
import android.database.Cursor;  
import android.net.Uri;  
 
public class RexseeSMS implements JavascriptInterface {  
 
       private static final String INTERFACE_NAME = "SMS";  
       @Override  
       public String getInterfaceName() {  
               return mBrowser.application.resources.prefix + INTERFACE_NAME;  
       }  
       @Override  
       public JavascriptInterface getInheritInterface(RexseeBrowser childBrowser) {  
               return this;  
       }  
       @Override  
       public JavascriptInterface getNewInterface(RexseeBrowser childBrowser) {  
               return new RexseeSMS(childBrowser);  
       }  
 
       public static final String CONTENT_URI_SMS = "content://sms";  
       public static final String CONTENT_URI_SMS_INBOX = "content://sms/inbox";  
       public static final String CONTENT_URI_SMS_SENT = "content://sms/sent";  
       public static final String CONTENT_URI_SMS_CONVERSATIONS = "content://sms/conversations";  
 
       public static String[] SMS_COLUMNS = new String[]{  
                       "_id", //0   
                       "thread_id", //1   
                       "address", //2  
                       "person", //3  
                       "date", //4  
                       "body", //5  
                       "read", //6; 0:not read 1:read; default is 0  
                       "type", //7;  0:all 1:inBox 2:sent 3:draft 4:outBox  5:failed 6:queued  
                       "service_center" //8  
       };  
       public static String[] THREAD_COLUMNS = new String[]{  
                       "thread_id",  
                       "msg_count",  
                       "snippet",  
       };  
 
       private final Context mContext;  
       private final RexseeBrowser mBrowser;  
 
       public RexseeSMS(RexseeBrowser browser) {  
               mBrowser = browser;  
               mContext = browser.getContext();  
       }  
 
       //JavaScript Interface  
       public String getContentUris() {  
               String rtn = "{";  
               rtn += "\"sms\":\"" + CONTENT_URI_SMS + "\"";  
               rtn += ",\"inbox\":\"" + CONTENT_URI_SMS_INBOX + "\"";  
               rtn += ",\"sent\":\"" + CONTENT_URI_SMS_SENT + "\"";  
               rtn += ",\"conversations\":\"" + CONTENT_URI_SMS_CONVERSATIONS + "\"";  
               rtn += "}";  
               return rtn;  
       }  
 
       public String get(int number) {  
               return getData(null, number);  
       }  
       public String getUnread(int number) {  
               return getData("type=1 AND read=0", number);  
       }  
       public String getRead(int number) {  
               return getData("type=1 AND read=1", number);  
       }  
       public String getInbox(int number) {  
               return getData("type=1", number);  
       }  
       public String getSent(int number) {  
               return getData("type=2", number);  
       }  
       public String getByThread(int thread) {  
               return getData("thread_id=" + thread, 0);  
       }  
       public String getData(String selection, int number) {  
               Cursor cursor = null;  
               ContentResolver contentResolver = mContext.getContentResolver();  
               try {  
                       if (number > 0) {  
                               cursor = contentResolver.query(Uri.parse(CONTENT_URI_SMS), SMS_COLUMNS, selection, null, "date desc limit " + number);  
                       } else {  
                               cursor = contentResolver.query(Uri.parse(CONTENT_URI_SMS), SMS_COLUMNS, selection, null, "date desc");  
                       }  
                       if (cursor == null || cursor.getCount() == 0) return "[]";  
                       String rtn = "";  
                       for (int i = 0; i < cursor.getCount(); i++) {  
                               cursor.moveToPosition(i);  
                               if (i > 0) rtn += ",";  
                               rtn += "{";  
                               rtn += "\"_id\":" + cursor.getString(0);  
                               rtn += ",\"thread_id\":" + cursor.getString(1);  
                               rtn += ",\"address\":\"" + cursor.getString(2) + "\"";  
                               rtn += ",\"person\":\"" + ((cursor.getString(3) == null) ? "" : cursor.getString(3)) + "\"";  
                               rtn += ",\"date\":" + cursor.getString(4);  
                               rtn += ",\"body\":\"" + Escape.escape(cursor.getString(5)) + "\"";  
                               rtn += ",\"read\":" + ((cursor.getInt(6) == 1) ? "true" : "false");  
                               rtn += ",\"type\":" + cursor.getString(7);  
                               rtn += ",\"service_center\":" + cursor.getString(8);  
                               rtn += "}";  
                       }  
                       return "[" + rtn + "]";  
               } catch (Exception e) {  
                       mBrowser.exception(getInterfaceName(), e);  
                       return "[]";  
               }  
       }  
       public String getThreads(int number) {  
               Cursor cursor = null;  
               ContentResolver contentResolver = mContext.getContentResolver();  
               try {  
                       if (number > 0) {  
                               cursor = contentResolver.query(Uri.parse(CONTENT_URI_SMS_CONVERSATIONS), THREAD_COLUMNS, null, null, "thread_id desc limit " + number);  
                       } else {  
                               cursor = contentResolver.query(Uri.parse(CONTENT_URI_SMS_CONVERSATIONS), THREAD_COLUMNS, null, null, "thread_id desc");  
                       }  
                       if (cursor == null || cursor.getCount() == 0) return "[]";  
                       String rtn = "";  
                       for (int i = 0; i < cursor.getCount(); i++) {  
                               cursor.moveToPosition(i);  
                               if (i > 0) rtn += ",";  
                               rtn += "{";  
                               rtn += "\"thread_id\":" + cursor.getString(0);  
                               rtn += ",\"msg_count\":" + cursor.getString(1);  
                               rtn += ",\"snippet\":\"" + Escape.escape(cursor.getString(2)) + "\"";  
                               rtn += "}";  
                       }  
                       return "[" + rtn + "]";  
               } catch (Exception e) {  
                       mBrowser.exception(getInterfaceName(), e);  
                       return "[]";  
               }  
       }  
 
} 
 
分享到:
评论

相关推荐

    rexsee jar

    Rexsee是什么 Rexsee是基于Android的HTML5开发平台,帮助开发者使用HTML5+JavaScript开发Android应用。 Rexsee的特点 编程语言使用 HTML5+CSS3+JavaScript+Rexsee扩展API。 超过2000个JavaScript扩展API,功能强大。...

    rexsee文档和api使用groovy爬下来分享给大家

    "rexsee文档和api使用groovy爬下来分享给大家" 这个标题表明,这是一个关于 RexSee 和 Groovy 的技术分享。RexSee 是一款编程工具,可能是用于解析、处理或生成文档的,而Groovy是一种动态、灵活的面向对象编程语言...

    rexsee非官方菜鸟安装文档

    【rexsee非官方菜鸟安装文档】是一篇针对不熟悉安卓开发的webapp开发者的指南,主要介绍了如何在rexsee官方取消在线生成功能后,自行安装并使用rexsee来将网站打包成安卓应用。 Rexsee是一个开源的Java软件包,它...

    Rexsee源代码

    1. **Rexsee介绍**:Rexsee是一个基于组件的快速应用开发工具,它支持多种平台,包括Android。其核心理念是提供高效的代码重用和快速开发能力,使得开发者可以更高效地创建应用程序。Rexsee源代码包含了编译器、运行...

    Rexsee 源代码

    编程语言使用 HTML5+CSS3+JavaScript+Rexsee扩展API。 超过2000个JavaScript扩展API,功能强大。 支持第三方JavaScript开发框架。 B/C/S混合架构,支持应用程序本地化,摆脱网络依赖。 全面支持Android原生UI布局,...

    Rexsee开发手册的zip文件

    在Rexsee的背景下,它可能是一个演示或介绍如何开始使用Rexsee的起始点。 3. `aboutHelp.html`:这个文件可能是关于Rexsee的详细帮助文档,解释其功能、API、工作流程,以及开发者可能遇到的问题解决方案。 4. `...

    使用Rexsee EMS开发Android手机应用:为什么及如何开始

    了解使用Rexsee EMS开发Android手机应用的好资料

    rexsee 最新软件源代码

    【 Rexsee:开启Android应用开发的新篇章】 Rexsee,作为一个独特的开发平台,它将HTML5和JavaScript的力量引入了Android世界,为开发者提供了一种高效、便捷的方式来构建原生的Android应用程序。这款软件的最新源...

    rexsee手机本地版开发手册

    rexsee手机本地版开发手册

    rexsee -src.zip

    编程语言使用 HTML5+CSS3+JavaScript+Rexsee扩展API。 超过2000个JavaScript扩展API,功能强大。 支持第三方JavaScript开发框架。 B/C/S混合架构,支持应用程序本地化,摆脱网络依赖。 全面支持Android原生UI布局,...

    半个小时移植Flash游戏到Android平台【技术文档】

    本文档主要介绍如何将Flash游戏快速移植到Android平台上,利用Rexsee提供的工具和技术,大约半小时内即可完成。首先,由于大多数Android手机缺乏物理键盘,针对键盘操作的Flash游戏在手机上难以玩转,但Rexsee提供了...

    Android移动中间件Rexsee开发手册

    Android移动中间件Rexsee开发手册,利用它可以快速开发Android应用程序,只需要你掌握HTML+CSS+JavaScript,而需要掌握java和Android SDK。让你快速得进入到移动开发的大门。

    android动画学习笔记及源码定义.pdf

    Rexsee API是一个针对Android原生动画的封装库,它允许开发者使用JavaScript来调用和操作动画,简化了动画的实现过程。例如,`onAnimationStart(String id)`是一个事件方法,当指定动画开始播放时会被触发。通过...

    开源Rexsee模糊原生应用与Web应用界线

    更为重要的是,Rexsee提供超过1500个API接口,使得Web应用可以直接通过JavaScript调用移动设备的各种功能,如摄像头、GPS、加速计等,使得Web应用具备了接近原生应用的能力。此外,Rexsee还兼容流行JavaScript框架如...

    磁场传感器用法

    Android操作系统提供了一套完整的API用于访问设备上的传感器,包括磁场传感器。 #### 二、磁场传感器工作原理 磁场传感器主要通过检测地球的磁场强度来确定设备的方向。它通常可以测量三个轴(X、Y、Z)上的磁场...

    基于Android平台的手机通讯录管理系统.pdf

    本文档介绍了基于Android平台的手机通讯录管理系统的设计与实现。随着3G和4G网络的发展,移动终端不仅是通信工具,也是互联网入口,这促使了移动应用软件的巨大需求。Android操作系统因其开放性、创新性和低成本开发...

    移动开发简介

    本文将详细介绍移动开发的基本概念、手机应用的现状、开发过程中遇到的挑战以及相应的解决策略,同时探讨云技术在移动开发中的作用。 1. 移动开发简介 移动开发是指针对移动设备进行软件开发,包括操作系统定制、...

    Android系统下计算机英语课件的设计与开发.pdf

    通过选择合适的开发工具和方法,如Rexsee,可以有效降低技术难度,提高教学效率,为教育创新打开新的可能。这种混合开发模式为教师提供了一个将教学内容与现代技术结合的桥梁,有助于推动教育的现代化进程。

    基于Android系统的移动学习平台的设计与实现.pdf

    学校自行开发的移动学习平台,多数是任课教师自行设计,在中间件(如Rexsee)的架构下,使用HTML5+CSS3+JavaScript的形式进行开发并实现。 4. 云推送技术的应用:本文设计和实现的移动学习平台应用了百度公司提供的...

Global site tag (gtag.js) - Google Analytics