当前位置:  编程技术>移动开发
本页文章导读:
    ▪取得手机中心号(服务号)        获得手机中心号(服务号) package lab.sodino.servicecenteraddress; import android.app.Activity; import android.app.PendingIntent; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; i.........
    ▪ [转]struts2的错误There is no Action 地图ped for namespace / and action name        [转]struts2的异常There is no Action mapped for namespace / and action name 调用 action 名称的页面应该放在 namespace 的名称里面(文件夹,路径)     <package name="example" namespace="/example" extends="struts-default"> .........
    ▪ 设立自己的程序为系统程序       设置自己的程序为系统程序 论坛摘抄的部分 来自http://topic.csdn.net/u/20100819/14/116a4c2d-c00d-45e9-8e06-b63ed16d0f02.html引用此问题今天已找到解决办法,其实前段时间应该也是找到了,但因为资源的.........

[1]取得手机中心号(服务号)
    来源: 互联网  发布时间: 2014-02-18
获得手机中心号(服务号)
package lab.sodino.servicecenteraddress;

import android.app.Activity;

import android.app.PendingIntent;

import android.content.BroadcastReceiver;

import android.content.Context;

import android.content.Intent;

import android.content.IntentFilter;

import android.os.Bundle;

import android.telephony.gsm.SmsManager;

import android.telephony.gsm.SmsMessage;

import android.view.Gravity;

import android.view.View;

import android.widget.Button;

import android.widget.LinearLayout;

import android.widget.TextView;

import android.widget.LinearLayout.LayoutParams;

public class ServiceCenterAddressAct extends Activity {

        private static final String ACTION_SMS_SEND = "lab.sodino.sms.send";

        private static final String ACTION_SMS_DELIVERY = "lab.sodino.sms.delivery";

        private static final String ACTION_SMS_RECEIVER = "android.provider.Telephony.SMS_RECEIVED";

        private TextView serviceCenterAddressText;

        private SMSReceiver sendReceiver;

        private SMSReceiver deliveryReceiver;

        private SMSReceiver smsReceiver;

        /** Called when the activity is first created. */

        @Override

        public void onCreate(Bundle savedInstanceState) {

                super.onCreate(savedInstanceState);

                LinearLayout.LayoutParams layParams = new LinearLayout.LayoutParams(

                                LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);

                LinearLayout linearLay = new LinearLayout(this);

                linearLay.setOrientation(LinearLayout.VERTICAL);

                linearLay.setLayoutParams(layParams);

                TextView textView = new TextView(this);

                textView.setBackgroundColor(0xffffffff);

                textView.setTextColor(0xff0000ff);

                textView.setTextSize(20);

                textView.setText("点击发送按钮将发送自定义字符串至10086");

                textView.setGravity(Gravity.CENTER);

                linearLay.addView(textView);

                Button btnSend = new Button(this);

                // LinearLayout.LayoutParams btnParams = new LinearLayout.LayoutParams(

                // LinearLayout.LayoutParams.FILL_PARENT,

                // LinearLayout.LayoutParams.WRAP_CONTENT);

                btnSend.setText("发送");

                btnSend.setOnClickListener(new Button.OnClickListener() {

                        public void onClick(View v) {

                                serviceCenterAddressText.setText("正在等待发送短信...");

                                sendSms();

                        }

                });

                linearLay.addView(btnSend);

                serviceCenterAddressText = new TextView(this);

                serviceCenterAddressText.setText("正在等待发送短信...");

                serviceCenterAddressText.setBackgroundColor(0xffffffff);

                serviceCenterAddressText.setTextColor(0xff0000ff);

                serviceCenterAddressText.setTextSize(20);

                serviceCenterAddressText.setGravity(Gravity.LEFT);

                linearLay.addView(serviceCenterAddressText);

                setContentView(linearLay);

                // 注册send

                sendReceiver = new SMSReceiver();

                IntentFilter sendFilter = new IntentFilter(ACTION_SMS_SEND);

                registerReceiver(sendReceiver, sendFilter);

                // 注册delivery

                deliveryReceiver = new SMSReceiver();

                IntentFilter deliveryFilter = new IntentFilter(ACTION_SMS_DELIVERY);

                registerReceiver(deliveryReceiver, deliveryFilter);

                // 注册接收下行receiver

                smsReceiver = new SMSReceiver();

                IntentFilter receiverFilter = new IntentFilter(ACTION_SMS_RECEIVER);

                registerReceiver(smsReceiver, receiverFilter);

        }

        protected void onPause() {

                unregisterReceiver(sendReceiver);

                unregisterReceiver(deliveryReceiver);

                unregisterReceiver(smsReceiver);

        }

        private void sendSms() {

                String smsBody = "lab.sodino.sms.test";

                String smsAddress = "10086";

                SmsManager smsMag = SmsManager.getDefault();

                Intent sendIntent = new Intent(ACTION_SMS_SEND);

                PendingIntent sendPI = PendingIntent.getBroadcast(this, 0, sendIntent,

                                0);

                Intent deliveryIntent = new Intent(ACTION_SMS_DELIVERY);

                PendingIntent deliveryPI = PendingIntent.getBroadcast(this, 0,

                                deliveryIntent, 0);

                smsMag.sendTextMessage(smsAddress, null, smsBody, sendPI, deliveryPI);

        }

        public class SMSReceiver extends BroadcastReceiver {

                public void onReceive(Context context, Intent intent) {

                        String actionName = intent.getAction();

                        int resultCode = getResultCode();

                        if (actionName.equals(ACTION_SMS_SEND)) {

                                switch (resultCode) {

                                case Activity.RESULT_OK:

                                        serviceCenterAddressText

                                                        .append("\n[Send]SMS Send:Successed!");

                                        break;

                                case SmsManager.RESULT_ERROR_GENERIC_FAILURE:

                                        serviceCenterAddressText

                                                        .append("\n[Send]SMS Send:RESULT_ERROR_GENERIC_FAILURE!");

                                        break;

                                case SmsManager.RESULT_ERROR_NO_SERVICE:

                                        serviceCenterAddressText

                                                        .append("\n[Send]SMS Send:RESULT_ERROR_NO_SERVICE!");

                                        break;

                                case SmsManager.RESULT_ERROR_NULL_PDU:

                                        serviceCenterAddressText

                                                        .append("\n[Send]SMS Send:RESULT_ERROR_NULL_PDU!");

                                        break;

                                case SmsManager.RESULT_ERROR_RADIO_OFF:

                                        break;

                                }

                        } else if (actionName.equals(ACTION_SMS_DELIVERY)) {

                                switch (resultCode) {

                                case Activity.RESULT_OK:

                                        serviceCenterAddressText

                                                        .append("\n[Delivery]SMS Delivery:Successed!");

                                        break;

                                case SmsManager.RESULT_ERROR_GENERIC_FAILURE:

                                        serviceCenterAddressText

                                                        .append("\n[Delivery]SMS Delivery:RESULT_ERROR_GENERIC_FAILURE!");

                                        break;

                                case SmsManager.RESULT_ERROR_NO_SERVICE:

                                        serviceCenterAddressText

                                                        .append("\n[Delivery]SMS Delivery:RESULT_ERROR_NO_SERVICE!");

                                        break;

                                case SmsManager.RESULT_ERROR_NULL_PDU:

                                        serviceCenterAddressText

                                                        .append("\n[Delivery]SMS Delivery:RESULT_ERROR_NULL_PDU!");

                                        break;

                                case SmsManager.RESULT_ERROR_RADIO_OFF:

                                        serviceCenterAddressText

                                                        .append("\n[Delivery]SMS Delivery:RESULT_ERROR_RADIO_OFF!");

                                        break;

                                }

                                serviceCenterAddressText.append("\n正在等待下行短信...");

                        } else if (actionName.equals(ACTION_SMS_RECEIVER)) {

                                System.out.println("[Sodino]result = " + resultCode);

                                Bundle bundle = intent.getExtras();

                                if (bundle != null) {

                                        Object[] myOBJpdus = (Object[]) bundle.get("pdus");

                                        SmsMessage[] messages = new SmsMessage[myOBJpdus.length];

                                        for (int i = 0; i < myOBJpdus.length; i++) {

                                                messages[i] = SmsMessage

                                                                .createFromPdu((byte[]) myOBJpdus[i]);

                                        }

                                        SmsMessage message = messages[0];

                                        serviceCenterAddressText.append("\n短信服务中心号码为:"

                                                        + message.getServiceCenterAddress());

                                }

                        }

                }

        }

}

    
[2] [转]struts2的错误There is no Action 地图ped for namespace / and action name
    来源: 互联网  发布时间: 2014-02-18
[转]struts2的异常There is no Action mapped for namespace / and action name

调用 action 名称的页面应该放在 namespace 的名称里面(文件夹,路径)

     <package name="example" namespace="/example" extends="struts-default">
         <action name="HelloWorld" >
             <result>/example/HelloWorld.jsp</result>
         </action>
HelloWorld.jsp 文件应该放在 namespace="/example"   example 文件夹里面. 否则调用 action 会出错.

关于 namespace : 

struts.xml 文件中 package 元素下 namespace 属性的作用 
           
说在前面的话: 
namespace的作用是控制相应package下的action的url地址,url地址在web编程中是基础中的基础. 我们的程序不同的功能实际上就是对相应url地址的访问来触发的,这个要牢牢掌握,有点象java的classpath 


原文: http://www.blogjava.net/Unmi/archive/2008/05/26/203014.html 
Struts2 的 struts.xml 中是分 package 配置的,可以为 package 设置 namespace 属性,如 

<package namespace="/secure"   ....> 
     ...... 
</package> 

如果没有指定 namespace 属性,默认 namespace 是 ""。使用 namespace 可以方便于按不同目的规划对应用的访问规则。比如不同 namespace 下配置了不同的拦截器就可以实现权限的控制,如 "/secure" 下已登陆用户才能访问,"/public" 下可公开访问的。 

配置了 namespace 直接就是反应在访问 URL 上,例如 namespace="/secure"   name="test" 的 action 

<package namespace="/secure"   ....> 
       <action name="test"   .... 
</package> 

访问它的 URL 就是 http://ip:port/context/secure/test.action,那如果在 namespace "/secure" 下没有 test action 会出现什么情况呢?Struts 还会尝试在默认 namespace,即 "" 下找 test。 

再举个例子,URL 是 http://ip:port/context/some/path/test.action 时,如果在 "/some/path" namespace 下找不到 test action,也是到 "" (default namespace) 下找 test action,但不会去 "/some" 下找的。 

用标签 <s:url value="/secure/test.action"/>   对应页面源文件是 /context/secure/test.action 

稍有麻的就是 <s:form action="/secure/test.action" .... 对应的源文件是 <form action="/context/secure/test.action" ...

但是后台会有警告: 

警告: No configuration found for the specified action: '/secure/test.action' in namespace: ''. Form action defaulting to 'action' attribute's literal value. 

Struts2 把 action 属性值当整一个 Action Name 了,但这也不影响使用,这个 URL 正好能与 (package namespace) + (action name) 合上拍。 

但是对于使用了动态方法调用(struts.enable.DynamicMethodInvocation = true)就没这么幸运了。很容易想当然的 

<s:form action="/secure/test!update.action" ....   生成的 HTML 源文件却是 action="/TestStruts2/om/test/index.html" 

同时后台的警告信息是: 

警告: No configuration found for the specified action: '/secure/test' in namespace: ''. Form action defaulting to 'action' attribute's literal value. 

很显然对于这个 action="/TestStruts2/om/test/index.html",提交时是会得到 HTTP Status 404 - /context/secure/test   错误。 

正确的用法是 <s:action...> 也有一个 namespace 属性,对了,就是 

<s:form namespace="/secure" action="/blog_article/test!login/index.html">   生成的 HTML 源文件是:<form action="/TestStruts2/om/test!login.action" ....> 

我们要的就是这个。 

如果不配置 namespace 属性,我们能不能在访问 action 时也用上目录层次呢?可以,那是在 struts1 习惯的做法,配置 <action name="secure/test" ....> name 中使用斜杠,但在 Struts2 中 Action Name 中使用斜杠需要设置 

struts.enable.SlashesInActionNames=true                       默认为 false 

可是 Struts2 大概不赞同这种做法,力挺 namespace 的作用。 

对于上面使用了斜框的 Action Name,<s:form 中的写法要用 

<s:form action="/blog_article/secure/test/index.html">                  生成 HTML 源文件:<form action="/context/secure/test.action" ..... 

<s:form action="/blog_article/secure/test!update/index.html">             生成 HTML 源文件:<form action="/context/secure/test!login.action" ..... 


上面的 action 后加不加 .action 无所谓,只是要保证 <s:form>   的 action 属性一定要与 struts.xml 中的 <action> 的 name 匹配上,如果你自作多情的在前面加个斜杠,如写成了 

<s:form action="/secure/test!update/index.html"> 、 <s:form action="/secure/test/index.html">   或者 <s:form action="/secure/test!update.action">   生成的 HTML 源文件就都成了:<form action="/context/secure/test/index.html" ..... 

这也是从 Struts1 带来的弊病,因为 Struts1 中 <html:form> action 属性对应的是 <action> 的 path,而 Struts2 中 <s:form> 的 action 属性对应的是 <action> 的 name;name 要完全匹配,path 可以加些层次。 

我为何以费这么些功夫来搞清楚这个呢,也就是因为使用 <s:form action=""> 是时而行,时而不行,很似迷惑,一度怀疑是应用服务器在从中作梗。坦白的说,就是写本篇日志完成红线以上的内容时仍未能知晓就理,这也正好映证了写下来的意义。因为在这过程中你在试图让别人更好的理解,倘若自己都说不清,他人只能是云里雾里了


    
[3] 设立自己的程序为系统程序
    来源: 互联网  发布时间: 2014-02-18
设置自己的程序为系统程序
论坛摘抄的部分 来自http://topic.csdn.net/u/20100819/14/116a4c2d-c00d-45e9-8e06-b63ed16d0f02.html

引用

此问题今天已找到解决办法,其实前段时间应该也是找到了,但因为资源的问题引起应用崩溃未找到原因一直以为是访问email数据库造成的原因,现在资源问题解决了利用以前的办法确实可以访问到了。

导致错误的原因如下:
因为Android本身自带的email应用的保护级别很高,是android:protectionLevel="signatureOrSystem",从android sdk自带文档了解到此种权限保护级别需要system本身镜像应用或者是同system镜像具有相同的签名应用才可以访问,因此一般的第三方应用即使添加了permission也还是会报错的。

解决方法:(生成system.img)
1 将自己的应用方到android源代码的packages/apps/目录下,添加Android.mk文件
2 在应用程序的AndroidManifest.xml中的manifest节点中加入android:sharedUserId="android.uid.system"这个属性。
3 修改Android.mk文件,加入LOCAL_CERTIFICATE := platform这一行
4 使用mm命令来编译,生成的apk就有同system一样的权限了。
5 在android根目录下用make snod重新生成system.img
6 启动emulator运行下应用看看是否好了。
由于我这里的email数据库没有任何信息,我只好打出来columns来看,和我期望读取的一样。

网上还有另外一种方法,但我用signapk报错了所以也就不介绍了,等解决好了再继续介绍。
困扰了好久的问题终于解决了希望能对大家都有帮助。
1 楼 anskya520 2012-02-17  
在应用程序的AndroidManifest.xml中的manifest节点中加入android:sharedUserId="android.uid.system"这个属性。

请问是哪个节点,activity还是application?
2 楼 wiseideal 2012-02-24  
application节点 appplication对应的是进程 想要被识别为系统程序肯定是进程那一级别的

    
最新技术文章:
▪Android开发之登录验证实例教程
▪Android开发之注册登录方法示例
▪Android获取手机SIM卡运营商信息的方法
▪Android实现将已发送的短信写入短信数据库的...
▪Android发送短信功能代码
▪Android根据电话号码获得联系人头像实例代码
▪Android中GPS定位的用法实例
▪Android实现退出时关闭所有Activity的方法
▪Android实现文件的分割和组装
▪Android录音应用实例教程
▪Android双击返回键退出程序的实现方法
▪Android实现侦听电池状态显示、电量及充电动...
▪Android获取当前已连接的wifi信号强度的方法
▪Android实现动态显示或隐藏密码输入框的内容
▪根据USER-AGENT判断手机类型并跳转到相应的app...
▪Android Touch事件分发过程详解
▪Android中实现为TextView添加多个可点击的文本
▪Android程序设计之AIDL实例详解
▪Android显式启动与隐式启动Activity的区别介绍
▪Android按钮单击事件的四种常用写法总结
▪Android消息处理机制Looper和Handler详解
▪Android实现Back功能代码片段总结
▪Android实用的代码片段 常用代码总结
▪Android实现弹出键盘的方法
▪Android中通过view方式获取当前Activity的屏幕截...
▪Android提高之自定义Menu(TabMenu)实现方法
▪Android提高之多方向抽屉实现方法
▪Android提高之MediaPlayer播放网络音频的实现方法...
▪Android提高之MediaPlayer播放网络视频的实现方法...
▪Android提高之手游转电视游戏的模拟操控
 


站内导航:


特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

©2012-2021,,E-mail:www_#163.com(请将#改为@)

浙ICP备11055608号-3