如何在安卓工作室项目中加载.properties文件数据

2022-09-05 00:02:34

在我当前的应用程序中,我需要维护一个文件,并且需要从此属性文件中获取java文件中的数据。我已经放置了属性文件,并且正在访问这些属性文件的值位于同一位置。但是当我运行应用程序时,它给出了.config.propertiesConfigUtil.javaFileNotFoundException

我无法理解为什么当两者都在同一文件夹中时,这不会加载属性文件。

My ConfigUtils.java代码是:

public class ConfigUtil {

private Properties properties;
InputStream inputStream = null;

public Properties getUrl(){
    properties = new Properties();
    try {
        inputStream = new FileInputStream("config.properties");
        properties.load(inputStream);

    } catch (FileNotFoundException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }finally {
        if(inputStream != null){
            try {
                inputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    return properties;
}
}

和 config.properties 文件也位于 相同的文件夹位置是:config.properties

/app/src/main/java/config.properties

位置是:ConfigUtil.java

/app/src/main/java.configutils.java


答案 1

步骤1

在资产文件夹中创建一个.properties文件,如果您没有资产文件夹,请在main下创建一个

enter image description here

enter image description here

配置属性

name=User Name
age=User Age
ok=Click

第 2 步

创建一个 Util.java 文件以读取属性文件。

利用.java

package javaant.com.propertiesfile;

import android.content.Context;
import android.content.res.AssetManager;

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

/**
 * Created by Nirmal Dhara on 12-07-2015.
 */
public class Util {
    public static String getProperty(String key,Context context) throws IOException {
        Properties properties = new Properties();;
        AssetManager assetManager = context.getAssets();
        InputStream inputStream = assetManager.open("config.properties");
        properties.load(inputStream);
        return properties.getProperty(key);

    }
}

第 3 步

通过调用 Util.getProperty(,getApplicationContext())在属性文件中使用变量。

主要活动.java

package javaant.com.propertiesfile;

import android.app.Activity;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.ImageButton;
import android.widget.TextView;

import java.io.IOException;


public class MainActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // read value from properties file

        TextView txtname= (TextView) findViewById(R.id.txtname);
        TextView txtage= (TextView) findViewById(R.id.txtage);
        Button btnok= (Button) findViewById(R.id.btnok);

        try {
            txtname.setText(Util.getProperty("name",getApplicationContext()));
            txtage.setText(Util.getProperty("age",getApplicationContext()));
            btnok.setText(Util.getProperty("ok",getApplicationContext()));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

请从这里下载完整的代码 http://javaant.com/how-to-use-properties-file-in-android/#.VwzippN96Hs


答案 2

您应该指定文件的完整路径(因为根工作目录不是所在的目录):ConfigUtil

inputStream = new FileInputStream("src/main/java/config.properties");

或者使用以下命令(使用从中加载的目录):ConfigUtil

inputStream = getClass().getResourceAsStream("config.properties");

推荐