Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Given a dictionary:

1=f00
2=bar
3=larodi
.
.
.

and some html files like:

<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>  
   content content content {1} bla
   bla bla {3} &%$*#$*$%# {2} and so on...
</body>
</html>

How to replace the keys in the files with their values with java? I've read about java.text.MessageFormat, but cannot come up with a way to use it.

share|improve this question
Why don't you use String.replaceAll ? Easy and just as good. – extraneon Aug 17 '10 at 15:05

3 Answers

up vote 1 down vote accepted
String result = MessageFormat.format(htmlString, "foo", "bar", "larodi");


String[] paramas = {"foo" , ....};
String result = MessageFormat.format(htmlString, params);

htmlString is your html content.

share|improve this answer
ok, but if I have more than 100 numbers to replace, can I write all of them as parameters in this function? – brain_damage Aug 17 '10 at 15:09
@brain_damage: you can send them as array of Objects or String to function. – mohammad shamsi Aug 17 '10 at 15:14
thank you both : ) – brain_damage Aug 17 '10 at 15:22

You may want to check some java template engines like freemarker and velocity.

share|improve this answer
thanks, I'll check them :) – brain_damage Aug 17 '10 at 15:10
+1 - or even JSP / JSTL. MessageFormat is very limited in what it can do. – Stephen C Aug 17 '10 at 15:11

It seems to me that a message formatter does not use dictionaries, but arrays. Your '1' is, as such, not a key but an index.

It looks a bit like you remember the python % operator. This isn't like that. MessageFormat uses a positional system. Either by entering the parameters directly, or by giving an array.

share|improve this answer
I've not decided how to represent my data yet. But yes, I'm still thinking in Python and it;s hard to start changing my view and think in Java :D – brain_damage Aug 17 '10 at 15:17
@brain_damage the python standard library is a bit more high-level than the java one. In java it is much more common to use external dependencies to make common jobs fairly easy. That's why tools like maven are so popular. In your case a templating dependency like velocity might be more natural than hacking something on your own. Python on the other hand has al those convenience things built-in, and if you easy-install something it's usually something large and comolex, like sqlalchemy or twisted. – extraneon Aug 17 '10 at 20:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.