about arguments in properties files

Hi All,Can you please tell me how many arguments I can pass as values in properties file. waiting for your quick reply...Thanks in Advance,siri.
[179 byte] By [siri_ipassa] at [2007-11-27 5:53:59]
# 1
What?
kajbja at 2007-7-12 15:47:55 > top of Java-index,Java Essentials,New To Java...
# 2
> Can you please tell me how many arguments I can pass as values in properties file.42.~
yawmarka at 2007-7-12 15:47:55 > top of Java-index,Java Essentials,New To Java...
# 3

> Hi All,

>

> Can you please tell me how many arguments I can

> pass as values in properties file.

>

> waiting for your quick reply...

>

> Thanks in Advance,

> siri.

Now that I've replied quickly, we don't typically associate "passing values" and "properties file". Are you having some problem with reading in properties? Please provide some foundation to your question.

~

yawmarka at 2007-7-12 15:47:55 > top of Java-index,Java Essentials,New To Java...
# 4

I am asking how many arguments i can put in value in properties file..

example:

Exception.properties file is there in that I am having some key value pairs..like

NOF={0}record not found in {1}table.

AIB=Array index out of bound exception.

like {0},{1} at the most how many parameters I can pass?

clear for you,now please tell me..waiting for your reply.

Thanks,

siri.

siri_ipassa at 2007-7-12 15:47:55 > top of Java-index,Java Essentials,New To Java...
# 5

> I am asking how many arguments i can put in value in

> properties file..

>

>

> example:

> Exception.properties file is there in that I am

> having some key value pairs..like

>

> NOF={0}record not found in {1}table.

> AIB=Array index out of bound exception.

>

> like {0},{1} at the most how many parameters I can

> pass?

As many as you want.

Kaj

kajbja at 2007-7-12 15:47:55 > top of Java-index,Java Essentials,New To Java...
# 6
> like {0},{1} at the most how many parameters I can pass?You can add as many as practical. How many have you tried? Is there some problem?~
yawmarka at 2007-7-12 15:47:55 > top of Java-index,Java Essentials,New To Java...
# 7

> I am asking how many arguments i can put in value in

> properties file..

>

>

> example:

> Exception.properties file is there in that I am

> having some key value pairs..like

>

> NOF={0}record not found in {1}table.

> AIB=Array index out of bound exception.

>

> like {0},{1} at the most how many parameters I can

> pass?

>

If you (or whatever is implementing this idea) are using the MessageFormat class to do this work then you are limited to 10. (0 - 9)

tsitha at 2007-7-12 15:47:55 > top of Java-index,Java Essentials,New To Java...