第一,在AndroidManifestxml中对<activity />标签增加<intent-filter />,如下:
<!--用这个Activity专门处理本App调起的情况-->
<activity android:name="combaidufeshemedemoSchemeActivity"
android:label="@string/app_name">
<!--要想在别的App上能成功调起App,必须添加intent过滤器-->
<intent-filter>
<!--协议部分,随便设置-->
<data android:scheme="zsrm"/>
<!--下面这几行也必须得设置-->
<category android:name="androidintentcategoryDEFAULT"/>
<action android:name="androidintentactionVIEW"/>
<category android:name="androidintentcategoryBROWSABLE"/>
</intent-filter>
</activity>
第二,在SchemeActivity中接收并处理Uri请求,实现跳转到不同的Native App页面,获取Uri可以在Activity中通过getIntent()getData()实现
// 尝试获取WebApp页面上过来的URL
Uri uri = getIntent()getData();
if (uri != null) {
StringBuffer sb = new StringBuffer();
// 完整的url信息
sbappend("url: " + uritoString());
// scheme部分
sbappend("\nscheme: " + urigetScheme());
// host部分
sbappend("\nhost: " + urigetHost());
// 访问路劲
sbappend("\npath: ");
List<String> pathSegments = urigetPathSegments();
for (int i = 0; pathSegments != null && i < pathSegmentssize(); i++) {
sbappend("/" + pathSegmentsget(i));
}
// Query部分
sbappend("\nquery: " + urigetQuery());
tvsetText(sbtoString());
}
第三,在WebApp页面上,通过如下方式使用
<!-- 注意这里的href格式 -- >
<a href="baidufe://schemedemo/get/infoid=10000">open baidufe android app</a>
注:tomcat启动后无法通过手机访问解决方法,修改Tomcat 90\conf下的service文件中的localhost为电脑IP地址,
仅此记录一下,来源出处:>
在javaEE项目中
webroot文件夹或者webcontent文件夹就是WebApp根目录
这些目录下一班存放视图文件比如html,jsp 脚本js文件 其它资源文件
在webxml中通过contextConfigLocation配置spring,contextConfigLocation参数定义了要装入的 Spring 配置文件
部署applicationContextxml文件
如果不写任何参数配置,默认的是在/WEB-INF/applicationContextxml
如果指定了要加载的文件,则会去加载相应的xml,而不会去加载/WEB-INF/下的applicationContextxml。如果没有指定的话,默认会去/WEB-INF/下加载applicationContextxml。
如果想要自定义文件名,需要在webxml中加入contextConfigLocation这个context参数
springmvc的默认配置文件是放在WEB-INF下的,并且要命名为 -servletxml, 为servlet—name,即下文中的"Springmvc"
webxml文件中webAppRootKey属性是web项目的绝对路径,默认值是webApproot,可以通过SystemgetProperty(“webApproot”)来获取属性值或者在配置文件中通过${webApproot}获得。
Spring通过 orgspringframeworkwebutilWebAppRootListener 这个监听器来注入项目路径,因此部署在同一个web容器中的项目,要配置不同的param-value(比如”项目名root”),不然会造成冲突。但是如果在webxml中已经配置了orgspringframeworkwebutilLog4jConfigListener这个监听器,则不需要配置WebAppRootListener了。因为Log4jConfigListener已经包含了WebAppRootListener的功能。WebAppRootListener要在ApplicationContext的ContextLoaderListener之前,否则ApplicationContext的bean注入根目录值时会发生无法注入异常。
"webapproot"这个字符串可以随便写任何字符串。如果不配置默认值是"webapproot"。
可以用SystemgetProperty("webapproot")来动态获项目的运行路径。
一般返回结果例如:/usr/local/tomcat6/webapps/项目名
定义以后,在Web Container启动时将把ROOT的绝对路径写到系统变量里。
然后log4j的配置文件里就可以用${webNameroot }来表示Web目录的绝对路径,把log文件存放于webapp中。
此参数用于后面的“Log4jConfigListener”-->
以上就是关于Android手机上实现WebApp直接调起NativeApp全部的内容,包括:Android手机上实现WebApp直接调起NativeApp、怎么才能用tomcat访问webapp目录外的文件、java 什么叫WebAPP根目录等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)