Back to project page GenericServer.
The source code is released under:
GNU General Public License
If you think the Android project GenericServer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.davecoss.android.genericserver; /*from ww w. j a va 2 s. c o m*/ import java.io.IOException; import java.io.InputStream; import java.util.Properties; public class BuildInfo { private Properties info_data = null; public BuildInfo() { info_data = new Properties(); InputStream info_file = this.getClass().getResourceAsStream("build.info"); if(info_file == null) { info_data = null; } else { try { info_data.load(info_file); } catch (IOException e) { info_data = null; } } } public Properties get_build_properties() { return info_data; } }