Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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
1answer
505 views

difference between MessageFormat.format and String.format in jdk1.5?

difference between MessageFormat.format and String.format in jdk1.5?
3
votes
2answers
66 views

Can you get access to the NumberFormatter used by ICU MessageFormat

This may be a niche question but I'm working with ICU to format currency strings. I've bumped into a situation that I don't quite understand. When using the MesssageFormat class, is it possible to ...
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
243 views

Windows: ReportEvent function

As far as I understood, the ReportEvent function requires Message Text Files associated through the registry to receive properly formatted messages. Is there any common Event Ids or any simple way to ...
1
vote
1answer
42 views

If unspecified, what is the default value for MessageStorage in a Notes Person document?

I'm having issues figuring out where it's grabbing the default value. I tried changing the message format field under the Mail tab in the Location document, but that didn't change the default message ...
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 ...