2017-07-31 18 views
-4

Java Resources/src/configuration.propertiesファイルにあるプロパティファイルの読み方がわかりません。私はそのプロパティファイルにも書き込みたい。Javaリソース/ src/configuration.propertiesにあるプロパティファイルの読み書き方法

ありがとうございました。

+2

あなたがしようとした何を?何か例外がありますか?あなたはMavenを使用していますか? – soorapadman

+1

"私は何も試していないし、すべてがアイデアから外れている" – f1sh

+0

それを書き始める。あなたは問題がある場合 - – STF

答えて

0

あなたが試したこと、およびプロパティファイルを読み込もうとしたところからはわかりません。

あなたはJavaの使用から、このコードプロパティファイルを読み込みたい場合:

public class ReadPropertiesFile { 
    public static void main(String[] args) { 
     try { 
      File file = new File("test.properties");//give the properties file path 
      FileInputStream fileInput = new FileInputStream(file); 
      Properties properties = new Properties(); 
      properties.load(fileInput); 
      fileInput.close(); 

      Enumeration enuKeys = properties.keys(); 
      while (enuKeys.hasMoreElements()) { 
       String key = (String) enuKeys.nextElement(); 
       String value = properties.getProperty(key); 
       System.out.println(key + ": " + value); 
      } 
     } catch (FileNotFoundException e) { 
      e.printStackTrace(); 
     } catch (IOException e) { 
      e.printStackTrace(); 
     } 
    } 
} 
関連する問題