如何在android studio项目中加载.properties文件数据

时间:2014-08-25 10:20:27

标签: java android

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

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

我的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

2 个答案:

答案 0 :(得分:33)

第1步

在assets文件夹中创建一个.properties文件,如果你没有assets文件夹,请在main下创建一个

enter image description here

enter image description here

<强> config.properties

name=User Name
age=User Age
ok=Click

第2步

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

<强> Util.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())在属性文件中使用变量。

<强> MainActivity.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

答案 1 :(得分:0)

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

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

或使用以下(使用目录ConfigUtil加载):

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