java中的property文件怎么调用

42次阅读
没有评论

共计 1343 个字符,预计需要花费 4 分钟才能阅读完成。

在 Java 中调用 property 文件有多种方法,其中常用的方法有以下几种:

  1. 使用 java.util.Properties 类:

    import java.io.FileInputStream;
    import java.io.IOException;
    import java.util.Properties;
    
    public class PropertyFileExample {public static void main(String[] args) {Properties properties = new Properties();
            try {FileInputStream fileInputStream = new FileInputStream("path/to/your/property/file.properties");
                properties.load(fileInputStream);
                fileInputStream.close();} catch (IOException e) {e.printStackTrace();
            }
    
            String value = properties.getProperty("key");
            System.out.println("Value: " + value);
        }
    }
    
  2. 使用 java.util.ResourceBundle 类:

    import java.util.ResourceBundle;
    
    public class PropertyFileExample {public static void main(String[] args) {ResourceBundle resourceBundle = ResourceBundle.getBundle("your.property.file");
            String value = resourceBundle.getString("key");
            System.out.println("Value: " + value);
        }
    }
    
  3. 使用 java.nio.file.Files 类:

    import java.io.IOException;
    import java.nio.file.Files;
    import java.nio.file.Path;
    import java.nio.file.Paths;
    import java.util.List;
    
    public class PropertyFileExample {public static void main(String[] args) {Path filePath = Paths.get("path/to/your/property/file.properties");
            try {List<String> lines = Files.readAllLines(filePath);
                for (String line : lines) {if (line.startsWith("key=")) {String value = line.substring(4);
                        System.out.println("Value: " + value);
                        break;
                    }
                }
            } catch (IOException e) {e.printStackTrace();
            }
        }
    }
    

请根据自己的需求选择适合的方法来调用 property 文件。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-12发表,共计1343字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)