/iProperty.java

https://github.com/Nijikokun/iConomy · Java · 209 lines · 151 code · 34 blank · 24 comment · 18 complexity · 41508435d5b69d4c9148c627add2b148 MD5 · raw file

  1. import java.io.BufferedReader;
  2. import java.io.File;
  3. import java.io.FileInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.FileReader;
  6. import java.io.IOException;
  7. import java.util.HashMap;
  8. import java.util.Map;
  9. import java.util.Properties;
  10. import java.util.logging.Level;
  11. import java.util.logging.Logger;
  12. /**
  13. * iConomy v1.x
  14. * Copyright (C) 2010 Nijikokun <nijikokun@gmail.com>
  15. *
  16. * This program is free software: you can redistribute it and/or modify
  17. * it under the terms of the GNU General Public License as published by
  18. * the Free Software Foundation, either version 2 of the License, or
  19. * (at your option) any later version.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  28. */
  29. /**
  30. * iProperty
  31. *
  32. * Reads & Writes properties files.
  33. *
  34. * @author Nijiko
  35. */
  36. public final class iProperty {
  37. private static final Logger log = Logger.getLogger("Minecraft");
  38. private Properties properties;
  39. private String fileName;
  40. public iProperty(String fileName) {
  41. this.fileName = fileName;
  42. this.properties = new Properties();
  43. File file = new File(fileName);
  44. if (file.exists()) {
  45. load();
  46. } else {
  47. save();
  48. }
  49. }
  50. public void load() {
  51. try {
  52. this.properties.load(new FileInputStream(this.fileName));
  53. } catch (IOException ex) {
  54. log.log(Level.SEVERE, "Unable to load " + this.fileName, ex);
  55. }
  56. }
  57. public void save() {
  58. try {
  59. this.properties.store(new FileOutputStream(this.fileName), "Minecraft Properties File");
  60. } catch (IOException ex) {
  61. log.log(Level.SEVERE, "Unable to save " + this.fileName, ex);
  62. }
  63. }
  64. public Map<String, String> returnMap() throws Exception {
  65. Map<String, String> map = new HashMap();
  66. BufferedReader reader = new BufferedReader(new FileReader(this.fileName));
  67. String line;
  68. while ((line = reader.readLine()) != null) {
  69. if (line.trim().length() == 0) {
  70. continue;
  71. }
  72. if (line.charAt(0) == '#') {
  73. continue;
  74. }
  75. int delimPosition = line.indexOf('=');
  76. String key = line.substring(0, delimPosition).trim();
  77. String value = line.substring(delimPosition + 1).trim();
  78. map.put(key, value);
  79. }
  80. reader.close();
  81. return map;
  82. }
  83. public void removeKey(String key) {
  84. this.properties.remove(key);
  85. save();
  86. }
  87. public boolean keyExists(String key) {
  88. return this.properties.containsKey(key);
  89. }
  90. public String getString(String key) {
  91. if (this.properties.containsKey(key)) {
  92. return this.properties.getProperty(key);
  93. }
  94. return "";
  95. }
  96. public String getString(String key, String value) {
  97. if (this.properties.containsKey(key)) {
  98. return this.properties.getProperty(key);
  99. }
  100. setString(key, value);
  101. return value;
  102. }
  103. public void setString(String key, String value) {
  104. this.properties.setProperty(key, value);
  105. save();
  106. }
  107. public int getInt(String key) {
  108. if (this.properties.containsKey(key)) {
  109. return Integer.parseInt(this.properties.getProperty(key));
  110. }
  111. return 0;
  112. }
  113. public int getInt(String key, int value) {
  114. if (this.properties.containsKey(key)) {
  115. return Integer.parseInt(this.properties.getProperty(key));
  116. }
  117. setInt(key, value);
  118. return value;
  119. }
  120. public void setInt(String key, int value) {
  121. this.properties.setProperty(key, String.valueOf(value));
  122. save();
  123. }
  124. public double getDouble(String key) {
  125. if (this.properties.containsKey(key)) {
  126. return Double.parseDouble(this.properties.getProperty(key));
  127. }
  128. return 0;
  129. }
  130. public double getDouble(String key, double value) {
  131. if (this.properties.containsKey(key)) {
  132. return Double.parseDouble(this.properties.getProperty(key));
  133. }
  134. setDouble(key, value);
  135. return value;
  136. }
  137. public void setDouble(String key, double value) {
  138. this.properties.setProperty(key, String.valueOf(value));
  139. save();
  140. }
  141. public long getLong(String key) {
  142. if (this.properties.containsKey(key)) {
  143. return Long.parseLong(this.properties.getProperty(key));
  144. }
  145. return 0;
  146. }
  147. public long getLong(String key, long value) {
  148. if (this.properties.containsKey(key)) {
  149. return Long.parseLong(this.properties.getProperty(key));
  150. }
  151. setLong(key, value);
  152. return value;
  153. }
  154. public void setLong(String key, long value) {
  155. this.properties.setProperty(key, String.valueOf(value));
  156. save();
  157. }
  158. public boolean getBoolean(String key) {
  159. if (this.properties.containsKey(key)) {
  160. return Boolean.parseBoolean(this.properties.getProperty(key));
  161. }
  162. return false;
  163. }
  164. public boolean getBoolean(String key, boolean value) {
  165. if (this.properties.containsKey(key)) {
  166. return Boolean.parseBoolean(this.properties.getProperty(key));
  167. }
  168. setBoolean(key, value);
  169. return value;
  170. }
  171. public void setBoolean(String key, boolean value) {
  172. this.properties.setProperty(key, String.valueOf(value));
  173. save();
  174. }
  175. }