View Javadoc
1   /*
2    * #%L
3    * wcm.io
4    * %%
5    * Copyright (C) 2014 wcm.io
6    * %%
7    * Licensed under the Apache License, Version 2.0 (the "License");
8    * you may not use this file except in compliance with the License.
9    * You may obtain a copy of the License at
10   *
11   *      http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   * #L%
19   */
20  package io.wcm.maven.plugins.i18n.readers;
21  
22  import java.io.File;
23  import java.io.FileInputStream;
24  import java.io.IOException;
25  import java.io.InputStreamReader;
26  import java.nio.charset.StandardCharsets;
27  import java.util.HashMap;
28  import java.util.Map;
29  import java.util.Properties;
30  
31  /**
32   * Reads i18n resources from Java properties files.
33   */
34  public class PropertiesI18nReader implements I18nReader {
35  
36    @Override
37    public Map<String, String> read(File sourceFile) throws IOException {
38      // read properties
39      Properties props = new Properties();
40      try (FileInputStream is = new FileInputStream(sourceFile);
41          InputStreamReader reader = new InputStreamReader(is, StandardCharsets.UTF_8)) {
42        props.load(reader);
43      }
44  
45      // convert to map
46      Map<String, String> map = new HashMap<>();
47      for (Map.Entry<Object, Object> entry : props.entrySet()) {
48        map.put(entry.getKey().toString(), entry.getValue().toString());
49      }
50      return map;
51    }
52  
53  }