... Perhaps it's a Map that you looking for Map map = new Hashmap(); map.put("string","value1"); mao.put("chr","value2"); //etc.... for better usage for map...
Hi Pardon my ignorance, but what is ROUND ROBIN? Thanks, Manuel ... then this can not ROUND ROBIN. will you please show me the code ? its very difficult ... ...
hi, can someone help me installing jrun.i installed it but the server is not running. any environmetal variable need to set?? if so how to set and wht the...
the foreach loop was added in Java 1.5 Assume we have an array of Strings. for(String str: array){ System.out.println(str); } Check Google for more info. ... ...
Hi, How to call sp from entitybean with transaction attributes. Uday ... Start your day with Yahoo! - make it your home page [Non-text portions of this message...
Hi whats is your RADIUS type? which Operating system? what is the type of database LDAP or DBMS thnx ... -- Ahmed Mostafa Hashim Software Engineer NTG Clarity...
I really know nothing about PHP but I think I understand what you want. First an array in java can only contain elements of the same type. You can't mix ...
hi i wanna check wether a particular file is corrupt or not through my java code. Can anyone please help me on this? i will be really greatfull thanks vibhor ...
How about negative numbers, too? You will have complex-numbers issue on your hands. Thanks ... __________________________________________________ Do You...
... A more balanced viewpoint can be found at : http://www.computerworld.com/developmenttopics/development/story/0,10801,84155,00.html I always believe in this...
... To me the solution provided seems to be round robin. The program code only need 2 loops, hence it is pretty simple -- http://www.programminghelp4u.com/ -...
Hi, I am reading a book abot design patterns where all the examples are in Java which is good. Mny times I come across this notation (this is always the...
Manuel, A good definition, found using Google, is at http://whatis.techtarget.com/definition/0,,sid9_gci214491,00.html. Bill ... Hi Pardon my ignorance, but...
... Stored procedure errors should be handled within the stored procedure itself using stored procedure syntax. If you are taling about errors that reflets to...
There is no for each in Java and moreover in Java you can not create mixed[data type] array. So an String array can hold only Strings and so on. You may have...
Foreach in jdk5, you can do like this Object[][] a2 = { { "a1", "obj1" }, { "a2", "obj2" }, { "a3", "obj3" }, { "a4", "obj4" }}; for (Object[] aObj : a2) { ...
I didnt write any code for this.. i just wrote the pseudo code in the mail what exactly is your doubt billfly3@... wrote: Manuel, A good definition,...
this.light represents a class instance of Light, while the "light" passed into the method is particular to that method. It just assigns the value of whatever ...
Thanks Bill for the link on what is a Round Robin, Now that I know what a Round Robin is, this is the way I will do it: - Pseudo -- Loop for 1 to items Loop...
"this" is a reference to the object on which this method was called. In this case, it's the object being constructed. Almost all of the time, you will never ...
thats wrong.. this way u r assigning one item to all ppl... which is not supposed to be Manuel Tejada <visualbprogrammers@...> wrote: Thanks Bill for the...
d00d, java has for each loop.. lookup jdk5 documentation and java has collections that can hold mixed data types.. ie. all kind of objects ArrayList Vector etc...
Nopes.. u ll hv to make sure that when the client app is deployed on any machine.. u must deploy the jars as well Base <base.x@...> wrote:Of course, maybe...
see.. all java code in jsp gets executed on the server.. not on client so for executing any java code on client u ll hv to use applet or web start Base...