本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- nychen2000
- ajinn
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- mwhgJava
- silverend
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
Eclipse打开文件(夹)所在的磁盘目录
Eclipse打开工程里的文件或者文件夹的磁盘目录不是很方便,安装插件后就很方便。这里有两个比较好的插件:EasyExplorer和Open Explorer。EasyExplorer不支持最新版的Eclipse而Open Explorer支持,因此这里推荐使用Open Explorer。
Open Explorer安装方法
在https://g ...
android 打开不同文件工具类(转)
public static Intent openFile(String filePath){
File file = new File(filePath);
if(!file.exists()) return null;
/* 取得扩展名 */
String end=file.getName().substring(file.getName().lastIndexOf( ...
java 打开文件夹
使用java 语言,如何打开文件夹和浏览文件呢?
打开文件夹或打开目录
/***
*
* @param folder
* : directory
*/
public static void open_directory(String folder) {
File file = new File(folder);
if (!fil ...
android打开文件
class OpenFiles {
public static Intent getImageFileIntent(File file) {
Intent intent = new Intent("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEF ...
Android执行打开文件的总结
1. Android里面,要打开各种类型的文件,例如PDF,PPT,WORD,EXCEL,CHM,HTML,TEXT,AUDIO,VIDEO ,可以通过Intent来办到。
整理了一个Intent的工具类:
import java.io.File;
import android.content.Intent;
import android.net.Uri;
//PDF,PPT,WOR ...