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...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 23046 - 23075 of 31601   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
23046
import java.util; would not compile. You should tell the compiler that it should import All classes under java/util/ directory by typing Ýmport java.util.*; ...
fatihmehmet.ucar@...
fmu12
Offline Send Email
Dec 1, 2005
4:16 pm
23047
Hi sonu, import java.util; is a worst,it wont compile. Since java.util is a package(contains many classes). Consider packages as directories. If u wanna a...
cheenujunk
Offline Send Email
Dec 1, 2005
4:16 pm
23048
Hi Chida, U can use the method setConnectTimeout(int) of URLConnection Check out the Java API of URLConnection class for more info on its usage - Satish ... Hi...
Satish Vellanki
satish_vell
Online Now Send Email
Dec 1, 2005
4:16 pm
23049
"import java.util" will result in an error, as you cannot import a package. "import java.util.*" will import all the classes in the java.util package. Note...
David Chuhay
thenerdwonder
Offline Send Email
Dec 1, 2005
4:16 pm
23050
ajay, why dont u try with a small program import java.util.*; means this will import all classes and interfaces in util pakage. no classes and interfaces from...
praveen
java_id_4me
Offline Send Email
Dec 1, 2005
4:17 pm
23051
i am broadcasting a message using UDP socket and i want the reply from every machine which get this message what should i have to do?? thanks in advance ...
Pavan Agrawal
agrawalpavan...
Offline Send Email
Dec 1, 2005
4:18 pm
23052
hi 2 all, how we connect the jsp page to one oracle application server login page, the jsp page contain the login information, if the user is clicked the...
kalai jsp
java_kalai
Offline Send Email
Dec 1, 2005
4:18 pm
23053
The first one does not work. An import goes like this: import java.util.*; -> All classes in java.util package imported. import java.util.List; -> List class...
Coen Meerbeek
cmeerbeek
Offline Send Email
Dec 1, 2005
4:19 pm
23054
hi, can any one give me the details about static include and dynamic include in a Jsp. regards, sridhar __________________________________________ Yahoo! DSL...
sridhar rao
sridharrao_1981
Offline Send Email
Dec 1, 2005
4:20 pm
23055
Hi U can't do something like import java.util; //throws a compilation error bcoz u can't import a package,but a class. util is a package and * implies all...
R kathir
katkamr
Offline Send Email
Dec 1, 2005
4:20 pm
23056
Hi Ajay, import java.util; This is invalid. util is not a class to import import java.util.*; This imports all the classes/interfaces in util package If u just...
Satish Vellanki
satish_vell
Online Now Send Email
Dec 1, 2005
4:21 pm
23057
I am new to java, Can someone please help me with the following code 1). If file (payrollData.txt) exist in directory c:\temp then copy the file into directory...
davemathewjr
Offline Send Email
Dec 1, 2005
6:13 pm
23058
Hello 2 all, Hello i am creating one web site in servlet and jsp.In that i have MailBox system.Like inbox,trash and all like mail system.But i dont know...
pritesh loke
priteshloke
Offline Send Email
Dec 1, 2005
6:15 pm
23059
Hi Dave, Try something like this: ......... // File (or directory) to be moved File file = new File("filename"); // Destination directory...
Manuel Tejada
visualbprogr...
Offline Send Email
Dec 1, 2005
7:20 pm
23060
File.renameTo() ... the...
christianduschl
Online Now Send Email
Dec 1, 2005
8:23 pm
23061
If you just want to move the file to another directory, you can use the following code: File file = new File("c:\\temp\\payrollData.txt"); if(file.exist()) { ...
Florin Diaconu
ilc_2004
Offline Send Email
Dec 1, 2005
8:23 pm
23062
go to http://www.kickjava.com/780.htm for examples. davemathewjr <davemathewjr@...> wrote:I am new to java, Can someone please help me with the following...
Andrew Rajkumar
andyrajkumar
Offline Send Email
Dec 1, 2005
8:24 pm
23063
Since we are all here to help and learn from each other, so don't be shy to tell us what you think/know. So, why don't you tell us what you think is the ...
Dan Le
led911
Offline Send Email
Dec 1, 2005
8:24 pm
23064
hi 2 all, i want connect jsp page 2 oracle application server login page how i use the Oracle session API in jsp page plz help me by kalai ... Yahoo! Personals...
kalai jsp
java_kalai
Offline Send Email
Dec 2, 2005
7:48 am
23065
Small note here. There is no programmatical difference between "import java.util.*;" and "import java.util.ArrayList;". Import does not instruct the compiler...
David Chuhay
thenerdwonder
Offline Send Email
Dec 2, 2005
7:48 am
23066
On java.sun.com, Sun's main Java site, there's a long interview (http://java.sun.com/developer/technicalArticles/Interviews/livschitz 2_qa.html) with Sun's...
zorry11111111
Offline
Dec 2, 2005
7:49 am
23067
Dear Java Gurus, I have the following queries regarding JDBC and i hope that i will get ur help. While getting a connection to Oracle database using the 'thin'...
yuva raja
yuva_raja96
Offline Send Email
Dec 2, 2005
4:31 pm
23068
Thanks for pointing out my mistake. ... __________________________________________ Yahoo! DSL – Something to write home about. Just $16.99/mo. or less. ...
cheenu D
cheenujunk
Offline Send Email
Dec 2, 2005
4:33 pm
23069
Hi all, i'm planning to take SCJP exam in january and i collected details about it in net. it seems to be Rs.7500 approximately, is there any way to get the...
RajeshKumar
b_rajkumarmca
Offline Send Email
Dec 2, 2005
4:33 pm
23070
hi all, I just want to know that is there any provision to embed a browser (e.g. firefox) in a java application. I need to know this because in one of my...
anand140778
Offline Send Email
Dec 2, 2005
4:33 pm
23071
Take a look at the Oracle JDBC FAQ link below. It should have all the answers for your questions and more... ...
Dan Le
led911
Offline Send Email
Dec 2, 2005
5:54 pm
23072
Hi, http://www.redherring.com/Article.aspx? a=14398&hed=BlackBerry+Rival+Snags+%2470M Just sharing the news, the wind is at our Mobile Back (which is easier to...
gworrell2001
Offline Send Email
Dec 2, 2005
10:31 pm
23073
Hi, Fee is $125(Around 6000Rupees) and you can take exam in NIIT centers. Venu....
Venugopal Reddy D
venugopal.reddy@...
Send Email
Dec 3, 2005
7:17 am
23074
Dear all, i am a beginner on java platforms. What is SSI? Is it possible to servelet can dynamicaly create JSP pages on the fly? Please help me with examples...
child_linux
Offline Send Email
Dec 3, 2005
7:17 am
23075
Hi all Could any one tell how to execute a jsp program in WebLogic.I have been trying this but i am doing somewhere wrong.So plzzzzzzzz tell me the steps from...
madhavi dasika
das_mai
Offline Send Email
Dec 3, 2005
7:17 am
Messages 23046 - 23075 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