Results 1 to 2 of 2
- 11-03-2011, 10:10 PM #1
Member
- Join Date
- Nov 2011
- Posts
- 5
- Rep Power
- 0
Somtimes HTML is printed in my code.
So I wrote a program to get the current time from this website: Current local time in U.S.A. – Connecticut – Stamford.
Now here's whats weird about my program, sometimes its prints what I want:
Steaming Live From: Current local time in U.S.A. – Connecticut – Stamford
5:08:14
And other times it adds some HTML to the time:
Steaming Live From: Current local time in U.S.A. – Connecticut – Stamford
5:09:08 PM</strong> <strong class
I'm not sure what's going on. All help is appreciated.
Thanks!Java Code:import java.net.*; import java.io.*; public class Internet { public static void main(String[] args) throws Exception { int i = 1; String website = "http://www.timeanddate.com/worldclock/city.html?n=897"; URL yahoo = new URL(website); BufferedReader in = new BufferedReader( new InputStreamReader(yahoo.openStream())); String inputLine; while ((inputLine = in.readLine()) != null) { i = i + 1; if(i == 58) { //Line 58 has the time //System.out.println("Line number" + i + ": " + inputLine); System.out.println("Steaming Live From: " + website); System.out.println(inputLine.substring(1395,inputLine.length()-15446)); //After character 1395 is the time } } in.close(); } }
- 11-04-2011, 04:06 PM #2
Re: Somtimes HTML is printed in my code.
It probably has something to do with how you're grabbing the time. Depending on the length of the line you've read from html isn't too reliable, it'd be a good idea to use regular expressions to pull the exact line that you need out from the stream.
Similar Threads
-
I need some java / html code written
By DeDanan in forum New To JavaReplies: 2Last Post: 03-01-2011, 09:36 AM -
read html code of web page
By asheeshiit in forum Advanced JavaReplies: 5Last Post: 06-15-2010, 02:39 PM -
Is this the right way of writing html code in java??
By raju.i in forum Advanced JavaReplies: 1Last Post: 05-18-2010, 08:05 AM -
[SOLVED] retrieve the html code of any web page
By Omarero in forum New To JavaReplies: 3Last Post: 02-18-2009, 10:20 PM -
Verify if a file as been, for sure, printed
By pjmorce in forum Advanced JavaReplies: 0Last Post: 11-20-2008, 10:45 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks