Welcome to Dream.In.Code
Become a Java Expert!

Join 149,608 Java Programmers for FREE! Get instant access to thousands of Java experts, tutorials, code snippets, and more! There are 1,886 people online right now. Registration is fast and FREE... Join Now!




url.openStream timeout

 
Reply to this topicStart new topic

url.openStream timeout

itpro4470
18 Aug, 2007 - 08:44 PM
Post #1

D.I.C Head
Group Icon

Joined: 17 Jun, 2007
Posts: 123



Thanked: 1 times
Dream Kudos: 25
My Contributions
my program just checks for a connection by using
BufferedReader in=new BufferedReader(new InputStreamReader(aURL.openStream)
sometimes my program hangs at this line for quite a while.
is there any way to set a time out for this???
User is offlineProfile CardPM
+Quote Post

alpha02
RE: Url.openStream Timeout
18 Aug, 2007 - 09:41 PM
Post #2

D.I.C Addict
Group Icon

Joined: 20 May, 2006
Posts: 687


Dream Kudos: 850
My Contributions
What kind of object is aURL? Socket, HTTPRequest...

This post has been edited by alpha02: 18 Aug, 2007 - 09:44 PM
User is offlineProfile CardPM
+Quote Post

itpro4470
RE: Url.openStream Timeout
19 Aug, 2007 - 12:18 PM
Post #3

D.I.C Head
Group Icon

Joined: 17 Jun, 2007
Posts: 123



Thanked: 1 times
Dream Kudos: 25
My Contributions
its just a url
URL aUrl=new URL("www.yahoo.com");
User is offlineProfile CardPM
+Quote Post

alpha02
RE: Url.openStream Timeout
19 Aug, 2007 - 12:23 PM
Post #4

D.I.C Addict
Group Icon

Joined: 20 May, 2006
Posts: 687


Dream Kudos: 850
My Contributions
You could try:

CODE
URLConnection conn = new URL("www.yahoo.com").openConnection();
BufferedReader  in = new BufferedReader(new InputStreamReader(conn.getInputStream()));


Then study the BufferedReader class smile.gif
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 1/8/09 12:04AM

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter

Live Java Help!

Java Tutorials

Reference Sheets

Java Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month