Tagged Questions
7
votes
5answers
3k views
Should I use java.text.MessageFormat for localised messages without placeholders?
We are localising the user-interface text for a web application that runs on Java 5, and have a dilemma about how we output messages that are defined in properties files - the kind used by ...
4
votes
6answers
2k views
How do I format a long integer as a string without separator in Java?
Simple question, but I'll bet that asking on here will probably be more straight forward than trying to understand the documentation for MessageFormat:
long foo = 12345;
String s = ...
3
votes
2answers
691 views
Is the Java MessageFormat Class thread safe? (as opposed to SimpleThreadFormat)
I know that SimpleDateFormat and NumberFormat are NOT thread safe.
http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4101500
But what about the other Format classes like MessageFormat?
Fortify 360 ...
3
votes
4answers
3k views
Can I escape braces in a java MessageFormat?
I want to output some braces in a java MessageFormat. For example I know the following does not work:
MessageFormat.format(" public {0} get{1}() {return {2};}\n\n", type, upperCamel, lowerCamel);
...
2
votes
2answers
1k views
Test for null parameter in .properties file for MessageFormat
Is it possible, with resource bundles and MessageFormat to have the following result?
when I call getBundle("message.07", "test") to get "Group test"
when I call getBundle("message.07", null) to ...
1
vote
2answers
1k views
Aligning messageformat on printing a JTable
I'm using this for the moment to print out my table, and it works. But I'm not really happy with the layout of the messageformatting, I would like to have both pagenumber and date in the footer, and ...
1
vote
6answers
740 views
Benefits of MessageFormat in Java
In a certain Java class for a Struts2 web application, I have this line of code:
try {
user = findByUsername(username);
} catch (NoResultException e) {
throw new ...
0
votes
1answer
54 views
MessageFormat formatting pattern Query
i am Using DisplayTag table library to render my tables, which gives the option to specify messageFormat patterns for the data. i am having some hard time in finding the correct format's
following are ...
0
votes
2answers
41 views
How do I retain the encoding in argument when using MessageFormat in Java
I am trying to use MessageFormat as follows,
String downloadsUrl = "http://host/downloads?tags={0}";
Object[] formatArgs = {"sequence%20diagram"};
String url = new ...
0
votes
3answers
225 views
better alternative to message format
I have a string of following format
Select * where {{0} rdfs:label "Aruba" } limit 10
Now I would like to replace {0} with some new text, but the problem is message format is unable to parse the ...