ResourceUtil

public class ResourceUtil
extends Object

java.lang.Object 中
   ↳ com.android.tradefed.util.ResourceUtil


用于读取配置资源的实用程序。

摘要

公共构造函数

ResourceUtil()

公共方法

static boolean extractResourceAsFile(String resource, File output)

已弃用:使用 extractResourceToFile 将给定资源提取到输出文件。

static void extractResourceToFile(String resource, File output)

将给定资源提取到输出文件。

static boolean extractResourceWithAltAsFile(String resource, String altResourcePath, File output)

使用后备备用路径将给定资源提取到输出文件。

static readConfigurationFromFile(File propertyFile)

从文件中读取属性配置。

static readConfigurationFromResource(String resource)

从资源中读取属性配置。

static readConfigurationFromStream(InputStream propertyStream)

从数据流中读取媒体资源配置。

公共构造函数

ResourceUtil

public ResourceUtil ()

公共方法

提取资源为文件

public static boolean extractResourceAsFile (String resource, 
                File output)

已弃用:使用 extractResourceToFile 将给定资源提取到输出文件。

参数
resource String

output File

返回
boolean

提取资源到文件

public static void extractResourceToFile (String resource, 
                File output)

将给定资源提取到输出文件。

参数
resource String

output File

使用 AltAsFile 提取资源

public static boolean extractResourceWithAltAsFile (String resource, 
                String altResourcePath, 
                File output)

使用后备备用路径将给定资源提取到输出文件。如果存在以下情况,则返回 false 就会失败

参数
resource String

altResourcePath String

output File

返回
boolean

readConfigurationFromFile 类中的方法

public static  readConfigurationFromFile (File propertyFile)

从文件中读取属性配置。配置必须遵循“key=value”或 “key:value”格式。该方法是安全的,如果出现错误,将返回空映射。

参数
propertyFile File:要读取的资源的路径。

返回
已加载资源的 ERROR(/Map)

另见:

readConfigurationFromResource 属性

public static  readConfigurationFromResource (String resource)

从资源中读取属性配置。配置必须遵循“key=value”或 “key:value”格式。该方法是安全的,如果出现错误,将返回空映射。

参数
resource String:要读取的资源的路径。

返回
已加载资源的 ERROR(/Map)

另见:

readConfigurationFromStream

public static  readConfigurationFromStream (InputStream propertyStream)

从数据流中读取媒体资源配置。配置必须遵循“key=value”或 “key:value”格式。该方法是安全的,如果出现错误,将返回空映射。

参数
propertyStream InputStream:要读取的资源的路径。

返回
已加载资源的 ERROR(/Map)

另见: