Results 1 to 6 of 6
Thread: What is wrong with this code?
- 05-29-2011, 03:43 PM #1
Member
- Join Date
- Sep 2010
- Posts
- 24
- Rep Power
- 0
What is wrong with this code?
I am busy learning Java from a book and the coding it has given me seems to be wrong.
I could not work out how to copy and paste the errors from Command Prompt for this postJava Code:import java.io.*; import java.net.*; public class DailyAdviceServer { String[] adviceList = {"Try to learn some Java today", "Check your Email", "Have you defragged me lately", "Clean my system", "Learn some Java", "check on Open University details", "Wheres OP finance", "Java Learning Day", "Be Happy", "Enjoy the Day"}; public void go() { try { ServerSocket serverSock = new ServerSocket(4242); while(true) { Socket sock = serverSock.accept(); PrintWriter writer = new PrintWriter(sock.getOutputStream()); String advice = getAdvice(); writer.println(advice); writer.close(); System.out.println(advice); } catch (IOException ex) { ex.printStackTrace(); } } private String getAdvice() { int random = (int) (Math.random() * adviceList.length); return adviceList[random]; } public static void main(String[] args) { DailyAdviceServer server = new DailyAdviceServer(); server.go(); } }
-
The error messages would help us out. Are you running the code using Windows OS? If so, you can right click it, select all and then copy it.
-
Also: Have you matched up all your curly braces, do all open-braces have a matching closing brace in the correct location?
- 05-29-2011, 04:17 PM #4
Member
- Join Date
- Sep 2010
- Posts
- 24
- Rep Power
- 0
Doh! I know how I forgot to miss that curly brace to close the try statement was because of the closing brace of the while() loop
Thankyou:)
-
You're welcome!
- 05-29-2011, 05:31 PM #6
Similar Threads
-
What is wrong with this code?
By Mythreadings in forum New To JavaReplies: 38Last Post: 11-19-2010, 12:43 AM -
What Could be Wrong with This code????
By Manfizy in forum New To JavaReplies: 9Last Post: 08-22-2010, 11:28 AM -
what is wrong with my code???
By EBBOOO in forum New To JavaReplies: 30Last Post: 07-27-2010, 09:59 PM -
What's wrong with this code?
By Doctor Cactus in forum New To JavaReplies: 4Last Post: 11-29-2008, 05:44 PM -
What's wrong with this code?
By Wizard wusa in forum New To JavaReplies: 14Last Post: 01-22-2008, 11:55 PM


1Likes
LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks