* 打开文件
* @param file
*/
private void openFile(File file){
Intent intent = new Intent()
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
//设置intent的Action属性
intent.setAction(Intent.ACTION_VIEW)
//获取文件file的MIME类型
String type = getMIMEType(file)
//设置intent的data和Type属性。
intent.setDataAndType(/*uri*/Uri.fromFile(file), type)
//跳转
startActivity(intent)
}
/**
* 根据文件后缀名获得对应的MIME类型。
* @param file
*/
private String getMIMEType(File file) {
String type="*/*"
String fName = file.getName()
//获取后缀名前的分隔符"."在fName中的位置。
int dotIndex = fName.lastIndexOf(".")
if(dotIndex < 0){
return type
}
/* 获取文件的后缀名 */
String end=fName.substring(dotIndex,fName.length()).toLowerCase()
if(end=="")return type
//在MIME和文件类型的匹配表中找到对应的MIME类型。
for(int i=0i<MIME_MapTable.lengthi++){ //MIME_MapTable??在这里你一定有疑问,这个MIME_MapTable是什么?
if(end.equals(MIME_MapTable[i][0]))
type = MIME_MapTable[i][1]
}
return type
}
具体的看这篇文章 http://tonysun3544.iteye.com/blog/1265884
Android根据路径打开文件夹的步骤:1、android系统内置了很多应用,包括电话拨号,短信,浏览器等,这里创建一个简单的Android程序,调用内置的浏览器打开指定的地址。
2、对应的layout xml为:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/btnGo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_marginTop="46dp"
android:text="@string/btnTitle_go" />
<EditText
android:id="@+id/txtUri"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/btnGo"
android:layout_alignBottom="@+id/btnGo"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/btnGo"
android:ems="10"
android:text="http://junqilian.cnblogs.com" >
<requestFocus />
</EditText>
</RelativeLayout>
3、Java代码实现如下,主要是给EditText添加一个OnKeyListener,处理在editText里面按回车键,给button添加一个onClickListener,触发到OpenBroswer函数,通过intent打开内置的浏览器。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)