Hi Please advise me how to make an ArrayList synchronised. thanks in advance Krish ... Ready for the edge of your seat? Check out tonight's top picks on Yahoo!...
Hi all, Does anybody know that is there a Java open source using to search the source code in Java, C/C++, SQL , XML, and HTML from file system? thank you for...
Dear Friends, i have created one simple JSP page, now i want to show that to my friends. how to make that page live... do i need server space or anything like ...
java.util.Vector " Vector is synchronized. " Regards Pedro ... -- Si de algo soy culpable, mi delito es haberme atrevido a creer. A creer que la verdad saldrá...
thanks, i got how to make it thread safe......... Pedro Arana <pedro.arana.matus@...> wrote: java.util.Vector " Vector is synchronized. " Regards Pedro ...
Hi Jst explore following: java.util.Collections.synchornizeList(<array list object>) I think it will help u out. --Gaurav Daga ... -- गौरव डागा...
can any one tell me why www.yoknall.com is not working or can you suggest me any alternative site for yoknall ... [Non-text portions of this message have been...
Hi All, In C language we have in-line substitution of macros with #define clause.i.e #define hello hai means in program where ever 'hello' word is there 'hai'...
Hi All, How to add days to a particular date (say 8/31/2007) in Java? I am aware of DATE and CALENDAR Objects in Java but not sure about methods. Thanks, ...
Hi Babita, Please see if this helps. Calendar.getInstance() by default instanciates a GregorianCalendar object. (check the src). Therefore: Calendar cal =...
Hi Everyone, I have got basic knowledge of j2EE and i am using NetBeans 5.5 But i don't like NetBeans. so i want to do same thing in Eclipse. I do use Eclipse...
Java does not have a preprocessor. This is where statements such as #include and #define come from. #define is really at odds with the Object-Oriented...
Dear Krishan, Thanks for yoru email. You cannot synchronized the ArrayList. If you wanna to synchronize you have to define the class vector which synchronized...
Hi, This will add 3 days to current date. however i don't know how to add days to specific date. if any one have any idea about that pls reply.... import...
can anybody please clarify my doubts.............. 1. will OS have JVM implicitly during OS instalation? 2.If not so how mobile is executing jar file without a...
Hi Babita, I guess you need to use Calendar object as Date object's method are depricated. You can use foolowing method of java.util.Calendar for adding Days,...
... Hi i am very new in java i was a programmer in C C++ and C# and dont know how it is in java but when i had such problems in c# i create a class with...
hi Date Arithmetic function. Adds the specified (signed) amount of time to the given time field, based on the calendar's rules. For example, to subtract 5 days...
Calendar c=Calendar.getInstance(); c.setTime("date that u want to add"); c.add(Calendar.DATE,2); this method will add two days to the Date what u have...
Hi dear, i want to add another quistion to urs I want to know about java heap and JVM and how i change the maximum and minimum size of the heap and how this...
Dhruv, To run J2EE , first thing is you should install Tomcat (or any web application server) . You should have the plugin folder for the respective server....
Hi Krishan, Well, there is no difference between java.util.Vector and java.util.ArrayList except Vector is ThreadSafe. So it can do all the things which an...
hi Java programmers Today , i am so happy to say that DoubleS Framework , is ready for using in Developing Commerical/Critical applications , today i released...
Hello, I'll try to clarify your doubts about java, so: 1. It depends... Some Linux distributions install Java by default, others not. On Windows, as far as I...
hello.... i'm a new member of this groups. now i'm studying web application with jsp how can i encrypt password from HTML form and store it in database??? i...