Search the web
Sign In
New User? Sign Up
Java_Official · Java SE . EE . ME . AJAX . Web services
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 30054 - 30085 of 31601   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
30054
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!...
Krishan Dhiman
comelyrinku
Offline Send Email
Sep 4, 2007
5:30 pm
30055
There is an interesting article on java.net about SOA reusability, Shrinking the Lag between Business and IT: ...
jerry.mcnealy
Offline
Sep 4, 2007
5:30 pm
30056
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...
Suriya Simsuwat
ssimsuwat2002
Offline Send Email
Sep 4, 2007
5:30 pm
30057
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 ...
krunal bhatt
krunal_d_bhatt
Offline Send Email
Sep 4, 2007
5:32 pm
30058
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á...
Pedro Arana
magus_zork
Online Now Send Email
Sep 4, 2007
9:28 pm
30059
Hi Krish, Put the ArrayList in the synchronized block. Regards, Chandana ... From: Krishan Dhiman <comelyrinku@...> To: Java Group...
chandana sharma
chandanasharma4
Offline Send Email
Sep 5, 2007
2:07 pm
30060
thanks, i got how to make it thread safe......... Pedro Arana <pedro.arana.matus@...> wrote: java.util.Vector " Vector is synchronized. " Regards Pedro ...
Krishan Dhiman
comelyrinku
Offline Send Email
Sep 5, 2007
2:08 pm
30061
Hi Jst explore following: java.util.Collections.synchornizeList(<array list object>) I think it will help u out. --Gaurav Daga ... -- गौरव डागा...
Gaurav Daga
extremeportal
Online Now Send Email
Sep 5, 2007
2:08 pm
30062
use List Collections.synchronizedList(List) method to synchronize ArrayList ... From: Pedro Arana <pedro.arana.matus@...> To: Java Official...
pankaj dhingra
d_panky
Offline Send Email
Sep 5, 2007
2:10 pm
30063
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...
Chaitanya Kandikonda
krischaitu
Offline Send Email
Sep 5, 2007
2:11 pm
30064
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'...
bchaithu17
Offline Send Email
Sep 7, 2007
12:06 am
30065
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, ...
Babita Sachdeva
bsachdeva_2005
Offline Send Email
Sep 7, 2007
12:06 am
30068
Hi Babita, Please see if this helps. Calendar.getInstance() by default instanciates a GregorianCalendar object. (check the src). Therefore: Calendar cal =...
Javed han
khanjavedi
Online Now Send Email
Sep 9, 2007
2:53 am
30069
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...
dhruvesh shah
shahdhruvesh
Offline Send Email
Sep 9, 2007
2:53 am
30070
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...
Java Guy
mmjavaguy
Offline Send Email
Sep 9, 2007
2:53 am
30071
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...
jitendra pandit
prince_lov
Offline Send Email
Sep 9, 2007
2:54 am
30072
i want know jfram form...
hossein_bargoshady
hossein_barg...
Offline Send Email
Sep 9, 2007
2:55 am
30073
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...
dhruvesh shah
shahdhruvesh
Offline Send Email
Sep 9, 2007
2:55 am
30074
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...
gobinathan shanmugan
java_psg
Offline Send Email
Sep 9, 2007
2:55 am
30075
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,...
Gaurav Daga
extremeportal
Online Now Send Email
Sep 9, 2007
2:57 am
30076
... 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...
majid_java2
Offline Send Email
Sep 9, 2007
2:57 am
30077
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...
mh_jt
Offline Send Email
Sep 9, 2007
2:59 am
30078
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...
naga maruthi
vnagamaruthi
Offline Send Email
Sep 9, 2007
3:03 am
30079
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...
rehab desoki
rehab_desoki
Offline Send Email
Sep 11, 2007
11:35 pm
30080
salam hossein jan if you what do you wanna know about jframe, I can answer in pinglish also if you would like best @Saeid hossein_bargoshady...
Saeid Kazemi
ksaeid
Offline Send Email
Sep 11, 2007
11:37 pm
30081
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....
dhanu8
Offline
Sep 11, 2007
11:37 pm
30082
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...
Neo Matrix
neo_isbackin...
Offline Send Email
Sep 11, 2007
11:38 pm
30083
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...
MAHMOUD SAMIR
msfclipper
Offline Send Email
Sep 11, 2007
11:38 pm
30084
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...
Florin Diaconu
ilc_2004
Offline Send Email
Sep 11, 2007
11:38 pm
30085
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...
andy
wanprabu
Offline Send Email
Sep 12, 2007
8:41 pm
Messages 30054 - 30085 of 31601   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help