android文件读取工具类,Android 下读取Assets Properties操作封装工具类

Android 下读取Assets Properties操作封装工具类

发布时间:2018-06-03作者:laosun阅读(2081)

0f9e8264915948f7a1174b4a48c40c63.gif

为了方便使用,首先创建BaseApplication类,如下所示:import android.app.Application;

import android.content.Context;

/**

* Created by sun on 2018/5/28.

*/

public class BaseApplication extends Application {

private static Context mContext;

@Override

public void onCreate() {

super.onCreate();

mContext = getApplicationContext();

}

public static Context getInstance() {

return mContext;

}

}

创建Prop工具类

import com.sunjs.application.BaseApplication;

import com.sunjs.log.LOG;

import java.io.IOException;

import java.io.InputStream;

import java.io.InputStreamReader;

import java.util.Properties;

public class Prop {

private Properties properties = null;

public Prop(String fileName, String encoding) {

InputStream inputStream = null;

try {

inputStream = BaseApplication.getInstance().getAssets().open(fileName);

if (inputStream == null) {

LOG.e(Thread.currentThread().getStackTrace()[1].getClassName(), "Properties file not found in classpath: " + fileName);

}

properties = new Properties();

properties.load(new InputStreamReader(inputStream, encoding));

} catch (IOException e) {

LOG.e(Thread.currentThread().getStackTrace()[1].getClassName(),e,"Error loading properties file.");

} finally {

if (inputStream != null) try {

inputStream.close();

} catch (IOException e) {

LOG.e(Thread.currentThread().getStackTrace()[1].getClassName(),e, e.getMessage());

}

}

}

private ClassLoader getClassLoader() {

ClassLoader ret = Thread.currentThread().getContextClassLoader();

return ret != null ? ret : getClass().getClassLoader();

}

public String get(String key) {

return properties.getProperty(key);

}

public String get(String key, String defaultValue) {

return properties.getProperty(key, defaultValue);

}

public Integer getInt(String key) {

return getInt(key, null);

}

public Integer getInt(String key, Integer defaultValue) {

String value = properties.getProperty(key);

if (value != null) {

return Integer.parseInt(value.trim());

}

return defaultValue;

}

public Long getLong(String key) {

return getLong(key, null);

}

public Long getLong(String key, Long defaultValue) {

String value = properties.getProperty(key);

if (value != null) {

return Long.parseLong(value.trim());

}

return defaultValue;

}

public Boolean getBoolean(String key) {

return getBoolean(key, null);

}

public Boolean getBoolean(String key, Boolean defaultValue) {

String value = properties.getProperty(key);

if (value != null) {

value = value.toLowerCase().trim();

if ("true".equals(value)) {

return true;

} else if ("false".equals(value)) {

return false;

}

throw new RuntimeException("The value can not parse to Boolean : " + value);

}

return defaultValue;

}

public boolean containsKey(String key) {

return properties.containsKey(key);

}

public Properties getProperties() {

return properties;

}

}

创建读取操作类

import java.util.concurrent.ConcurrentHashMap;

/**

* Created by sun on 2018/5/28.

*/

public class PropKit {

private static Prop prop = null;

private static final ConcurrentHashMap map = new ConcurrentHashMap();

private PropKit() {

}

public static Prop use(String fileName) {

return use(fileName, Const.DEFAULT_ENCODING);

}

private static Prop use(String fileName, String encoding) {

Prop result = map.get(fileName);

if (result == null) {

//服务端并发时使用,这块其实不用使用

synchronized (PropKit.class) {

result = map.get(fileName);

if (result == null) {

result = new Prop(fileName, encoding);

map.put(fileName, result);

if (PropKit.prop == null) {

PropKit.prop = result;

}

}

}

}

return result;

}

public static void clear() {

prop = null;

map.clear();

}

public static Prop getProp() {

if (prop == null) {

//默认加载config.properties文件

//这里的Const.default_config就是assets目录下的config.properties

use(Const.default_config);

}

return prop;

}

public static Prop getProp(String fileName) {

return map.get(fileName);

}

public static String get(String key) {

return getProp().get(key);

}

public static String get(String key, String defaultValue) {

return getProp().get(key, defaultValue);

}

public static Integer getInt(String key) {

return getProp().getInt(key);

}

public static Integer getInt(String key, Integer defaultValue) {

return getProp().getInt(key, defaultValue);

}

public static Long getLong(String key) {

return getProp().getLong(key);

}

public static Long getLong(String key, Long defaultValue) {

return getProp().getLong(key, defaultValue);

}

public static Boolean getBoolean(String key) {

return getProp().getBoolean(key);

}

public static Boolean getBoolean(String key, Boolean defaultValue) {

return getProp().getBoolean(key, defaultValue);

}

public static boolean containsKey(String key) {

return getProp().containsKey(key);

}

}

测试:

assets下有config.properties

内容如下:

login.url=

dev.mode=true

使用获取方式如下:

String loginUrl = PropKit.use("config.properties").get("login.url");

boolean devMode = PropKit.getBoolean("dev.mode");

从上边可以看出,.use是填写的assets根目录下的properties文件名称,代码中默认的文件名叫做config.properties,所以也可以不用写.use,可以直接进行获取。

af499b9437efec8e1b25c2bb396e60d7.png

0 +1

版权声明

发表评论

请文明留言

发表

共 0 条评论

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/529109.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python粘性拓展_如何将tkinter小部件置于粘性框架中

在google中使用“如何使tkinter网格扩展”,我遇到了这个问题。 引用布莱恩奥克利的话Rows and columns have "weight" which describes how they grow or shrink to fill extra space >in the master. By default a row or column has a weight of zer…

android 固件 编辑器,RK3288编译 Android 5.1 固件

1 准备工作编译 Android 对机器的配置要求较高:64 位 CPU16GB 物理内存交换内存30GB 空闲的磁盘空间用于构建,源码树另外占用大约 25GBUbuntu 14.04 操作系统八核i7,编译完成需要一个半小时安装 JDK 7:sudo apt-get install openjdk-7-jdkUbu…

python解压到指定文件夹_在Python中压缩和解压文件

Python部落(python.freelycode.com)组织翻译,禁止转载,欢迎转发。 如果你已经使用计算机一段时间,你可能遇到了.zip扩展名的文件。它们是可以保存许多其他文件,文件夹和子文件夹的压缩内容的特殊文件。这种类型的文件在使用互联网…

android bar布局,Android学习路线(十)如何将Action Bar叠放在你的布局上

默认状况下,action bar出如今activity窗口的顶部,略微减小了activity布局的总空间。若是你想隐藏或者显示action bar,在这堂用户体验的课程中,你能够经过调用htmlFigure 1. Gallerys action bar in overlay mode.android为了不在a…

geant4运行例子_Geant4--一次编译,运行多个Run,极大提升模拟效率

文|梁佐佐应唐光毅博士/后之约,对于Geant4模拟,我们看是否能解决这么一个问题:我现在想模拟探测器不同角度下的响应,每次模拟需要/run/beamOn 100, 可是我真的不想一遍一遍的去http://DetectorConstruction.cc中修改几…

python3.7基础教程_关于本教程 |《Python 官方文档:入门教程 3.7.0》| Python 技术论坛...

本文档最新版为 3.8,旧版本可能放弃维护,推荐阅读最新版! Python 入门教程 Python 是一门简单易学且功能强大的编程语言。它拥有高效的高级数据结构,并能够用简单又有效的方式进行面向对象编程。Python 优雅的语法和动态类型&…

android listview countdowntimer,Android-ListView中的CountDownTimer随机闪烁

我正在使用计时器制作列表视图,每个计时器都有不同的截止日期,具体取决于数据库(类似于拍卖)Time now new Time();now.setToNow();now.normalize(true);nowMillis now.toMillis(true);..String endtime a.get(position).get(TAG_ENDTIME);Integer tim…

echart实现3d地图_3D飞线效果——让线“飞”起来的秘密

在城市规划、统计、交通等行业,地图可视化已成为最直接也最吸引眼球的一种表达方式。例如人群迁徙、人口流动、OD出行、职住分析、客流来源等众多场景都需要用到飞线效果呈现。2D飞线效果图随着可视化技术的进一步发展,传统的2D飞线效果略显单调&#xf…

ad域管理与维护_在NAS SMB卷上使用VisualSVN Server维护代码库

VisualSVN Server[1] 是 Windows 平台上流行的 SVN 形式的代码管理工具。以下我们将介绍把 NAS SMB 卷作为 VisualSVN 代码库存储中心时会遇到的几个问题以及相应的解决方法。1. 安装错误的解决方法我们以 VisualSVN Server 3.3.1 版本为例,在安装 VisualSVN Server…

android 开发art,Android应用开发之Android 系统启动原理(art 虚拟机)

本文将带你了解Android应用开发之Android 系统启动原理(art 虚拟机),希望本文对大家学Android有所帮助。Android 系统启动原理(art 虚拟机)一、虚拟机的启动Android 是一个 Linux 的虚拟机,当虚拟机启动的时候,会执行手机根目录下的 init.r…

电脑文件夹可以分屏的软件_电脑上什么便签软件可以添加音频?

提及便签,很多人都会很自然地想到手机便签。这是因为随着智能手机和移动互联网的发展,现在很多手机上都有了系统自带的便签app。其实,除了手机便签外,还有电脑便签呢!这不,Win7及其以上版本的电脑上还有系统…

jsp form提交到后台中文乱码_JSP与servlet之间的数据传递

【51】Jsp与Servlet之间的传值有两种,一种是Jsp传值给Sevlet,另一种是Servlet传值给Jsp;使用request、response对象完成传值,具体实现如下:Jsp与Servlet之间的传值有两种,一种是Jsp传值给Sevlet&#xff0c…

android jni 中jnienv,android JNI中JNIEnv類型和jobject類型的解釋

JNIEXPORT void JNICALL Java_com_jni_demo_JNIDemo_sayHello (JNIEnv *env, jobject obj){cout<}對於這個方法參數中的JNIEnv* env參數的解釋:JNIEnv類型實際上代表了Java環境&#xff0c;通過這個JNIEnv* 指針&#xff0c;就可以對Java端的代碼進行操作。例如&#xff0c;…

yang模型中rpc_领域驱动模型(DDD)设计讲解

一. 什么是领域驱动模型(DDD)&#xff1f;领域驱动模型一种设计思想&#xff0c;我们又称为DDD设计思想。是一种为了解决传统设计思想带来的维护困难&#xff0c;沟通困难和交互困难而产生的一种新的思想。也解决了在部分公司中&#xff0c;一个项目组就是一套服务&#xff0c;…

鸿蒙系统操作界面跟苹果很像,鸿蒙手机UI界面曝出!图标拟物化、操作逻辑近似苹果iOS13...

原标题&#xff1a;鸿蒙手机UI界面曝出&#xff01;图标拟物化、操作逻辑近似苹果iOS13​【IT爆料王-原创文章-具备版权效力】就在近日&#xff0c;笔者收到了网友的匿名私信&#xff0c;提供给笔者华为鸿蒙系统的UI界面截图&#xff0c;以及搭载鸿蒙系统的华为手机的曝光图片。…

python3中的int类型占64位,有没有什么办法来强制Python来使用64位整数的Windows?

I’ve noticed that whenever any integer surpasses 2^31-1 my number heavy code suffers a large slowdown, despite the fact I’m using a 64 bit build of Python on a 64bit version of Windows. This seems to be true on Python 2.7 and Python 3. I’ve read that Wi…

crtsiii型无砟轨道板_无砟轨道裂缝破损怎么修补

随着高速铁路、客运专线、城市地铁的快速发展&#xff0c;无砟轨道轨道板&#xff08;道床板&#xff09;广泛应用&#xff0c;但施工中和运营期都发现轨道板混凝土存在不同程度的微细裂缝&#xff0c;对无砟轨道造成了一定的病害。高铁轨道板裂缝是不可避免的。为确保无砟轨道…

c调用python第三方库_Python使用ctypes模块调用DLL函数之C语言数组与numpy数组传递...

在Python语言中&#xff0c;可以使用ctypes模块调用其它如C语言编写的动态链接库DLL文件中的函数&#xff0c;在提高软件运行效率的同时&#xff0c;也可以充分利用目前市面上各种第三方的DLL库函数&#xff0c;以扩充Python软件的功能及应用领域&#xff0c;减少重复编写代码、…

妲己机器人怎么升级固件_台湾重金设计的3D妲己,亮瞎了

大家还记得前几天米醋分享的国内首档二次元选秀&#xff0c;遭网友疯狂吐槽&#xff1a;不知道怎么形容的丑&#xff01;当米醋看到了这档综艺的宣传海报时瞬间被这一批选手的颜值所吸引&#xff01;太魔幻了&#xff01;没成想看到3D人物效果时米醋却被这盛世丑颜丑到裂开&…

go语言通道插入0_Go语言入门必知教程-通道

Golang提供了一种称为通道的机制&#xff0c;用于在协程之间共享数据。当函数作为协程执行并发活动时&#xff0c;需要它们共享资源或数据&#xff0c;通道便充当协程之间的管道(管道)&#xff0c;提供一种确保同步交换数据的机制。需要在声明通道时指定数据类型&#xff0c;可…