vote up -2 vote down star

Hello. I have been asked to go and find out about placeholders in Java. I have searched the internet and cannot find any site that will tell me what a placeholder is (in java terms), how they work and why we would use them. I was wondering if anybody could help? cheers.

flag

0% accept rate
2  
I've never heard of them before...could you provide some context? Perhaps I'm familiar with them by a different name. – Thomas Owens Jul 21 at 13:57
1  
Have you considered asking whoever tasked you with this to give more detail on what they want? – Will Hartung Jul 21 at 14:54
Just what I was thinking Will – Nick Holt Jul 21 at 15:29
I think your question is not clear, because you need to give more information on how the term is used. As you know, technical terms are superfluously used. Sometimes different terms meaning the same thing. – bLee Jul 21 at 15:31

6 Answers

vote up 0 vote down

Perhaps your questioner forgot to substitute the real question for "placeholder" ?

link|flag
+1 for meta; gotta love meta! – Carl Manaster Jul 21 at 16:21
vote up 1 vote down

In some context the keys used in a property file is called place holder. I think in spring framework we calls the keys as place holder.

eg: smtp.server=192.168.3.9

here smtp.server is called as a placeholder

link|flag
vote up 0 vote down

Maybe they're talking about annotations? That's one Java feature I could think of where someone would say "go learn more about this".

link|flag
vote up 5 vote down

The only Java context where I've heard the term placeholder used is in creating PreparedStatements. Sun's Using Prepared Statements tutorial gives the following example:

PreparedStatement updateSales = con.prepareStatement(
    "UPDATE COFFEES SET SALES = ? WHERE COF_NAME LIKE ?");

Here, the ? characters in the SQL are referred to as placeholders. You supply values for the placeholders by using setXXX methods.

updateSales.setInt(1, 75);
updateSales.setString(2, "Colombian");

Of course, there's much more detail in the tutorial I linked to. Without more context in your question, I'm not sure if this is what you're asking about or not.

link|flag
In which case, any raw SQL access to a database MUST MUST MUST use placeholders. Besides being potentially more efficient on the database side, it eliminates the possibility of foreign SQL injection, a VERY serious security vulnerability. – Adam Batkin Jul 21 at 15:29
vote up 1 vote down

I'm guessing you're talking about the format strings in Java 5+:

System.out.printf("Hello %s", "world");

Really you should ask whoever told you to research them to specify exactly what they mean.

link|flag
Are these called placeholders? – jjnguy Jul 21 at 14:06
I suppose that is what they technically are. I don't know if that is the term used though. – jjnguy Jul 21 at 14:06
@jjnguy: it seems like everyone is guessing what "placeholder" means. People often use the term when they talk about format strings, though. – bLee Jul 21 at 15:30
vote up 1 vote down

When I think of place holder I think of the following:

String path = "/home/USERNAME/files/";
File f = new File(path.replaceFirst("USERNAME", someVariable));

In that case the String "USERNAME"` is a placeholder.

In this case, the placeholder makes the code much prettier. The alternative may be something like:

String firstpart = "/home/";
String secondpart = "/files/";
File f = new File(firstpart + someVariable + secondPart);

However, placeholder is a very general term. Some more context would be helpful.

link|flag

Your Answer

Get an OpenID
or

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