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.*; ...
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...
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...
"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...
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...
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 ...
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...
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...
hi, can any one give me the details about static include and dynamic include in a Jsp. regards, sridhar __________________________________________ Yahoo! DSL...
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...
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...
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...
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...
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()) { ...
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...
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 ...
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...
Small note here. There is no programmatical difference between "import java.util.*;" and "import java.util.ArrayList;". Import does not instruct the compiler...
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...
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'...
Thanks for pointing out my mistake. ... __________________________________________ Yahoo! DSL – Something to write home about. Just $16.99/mo. or less. ...
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...
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...
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...
Hi, Fee is $125(Around 6000Rupees) and you can take exam in NIIT centers. Venu....
Venugopal Reddy D
venugopal.reddy@...
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...
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...