Registry / config / java-properties

java-properties

JSON →
library2.0.0rscratesunverified

A library for reading and writing Java properties files in Rust.

# Cargo.toml [dependencies] java-properties = "2.0.0"
INSTALL
IMPORT
SIG · JAVA-PROPERTIES
J
java-properties
configrustv2.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

PropertiesIter
use java_properties::PropertiesIter;

Reads a Java properties file string and prints key-value pairs.

use java_properties::PropertiesIter; fn main() { let input = "key = value\n"; let iter = PropertiesIter::from_str(input).unwrap(); for (key, value) in iter { println!("{}: {}", key, value); } }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2.0.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
22 hits · last 30 days
node
18
OpenAI (training)
1
Resources
java-properties — cargo add java-properties · libregistry