java-properties

How to enclose text patterns within xml elements, except when it is already inside a certain xml element?

I have several thousand xml files generated from java properties files prepared for translation in the TTX format. They contain quite a few variables, that I need to protect from the translators, as they often break such things. The variables are in the form of numbers or occasionally text between a pair of curly braces eg. {0}, {this}. ...

Java Properties File in Eclipse

That's basically it...How do I create it?? I've been trying to find it and googling for it but found nothing yet...maybe I'm just overlooking it...but I already got sort of desperate... ...

How to use java property files?

So I have a list of key/value pairs of configuration values I want to store as java property files, and later load and iterate through. Questions: Do I need to store the file in the same package as the class which will load them, or is there any specific location where it should be placed? Does the file need to end in any specific ext...

configuration for java class library on tomcat distibution

What is the best practice for configuring a java class library? At my work, i am writing a class library. Some of the classes needs a configuration to work with our system setup. This configuration may change, and the distribution of the jar file takes a lot of time, as it is going through a lot of test layers. How do i do the configu...

Reading java .properties file from bash

I am thinking of using sed for reading .properties file, but was wondering if there is a smarter way to do that from bash script? ...

Properties in java - can we have comma-separated keys with single value?

I want to have multiple keys (>1) for a single value in a properties file in my java application. One simple way of doing the define each key in separate line in property file and the same value to all these keys. This approach increases the maintainability of property file. The other way (which I think could be smart way) is define comm...

How do I change the default locale settings in Java to make them consistent?

I'm looking for a set of command line parameters that will allow me to force a specific set of locale settings for a java application. Lets say that I'm not able to modify the application so I have to set the properties using java -Dmy.prop="value" I'm looking specially to change the datetime format to make it ISO-8601 compliant (mili...