Skip to content

Repository files navigation

Java properties for Rust

This is a library for reading and writing Java properties files in Rust. The specification is taken from the Properties documentation. Where the documentation is ambiguous or incomplete, behavior is based on the behavior of java.util.Properties.

Example

use std::collections::HashMap;use std::env::temp_dir;use std::fs::File;use std::io::BufReader;use std::io::BufWriter;use std::io::prelude::*;letmut file_name = temp_dir();
file_name.push("java-properties-test.properties");// Writingletmut map1 = HashMap::new();
map1.insert("a".to_string(),"b".to_string());letmut f = File::create(&file_name)?;write(BufWriter::new(f),&map1)?;// Readingletmut f = File::open(&file_name)?;let map2 = read(BufReader::new(f))?;assert_eq!(src_map1, dst_map1);

About

A library for reading and writing Java properties files in Rust

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages