Java Development
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingJava Development

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
Stay one step ahead of the competition. Evaluate and give feedback on some of the hottest web development tools on the market today. Make your opinion heard! Click Here
  #1  
Old February 26th, 2004, 05:54 PM
alex_bg_99 alex_bg_99 is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 2 alex_bg_99 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question Need help with Java please

I don't know java, but that is for an assignment at school, I was given the code and I am supposed to just pipe the output to a file and submit it.

I am trying to compile the following code using javac.
I am able to compile

javac Server.java

but when I do java Server.java I get

Exception in thread "main" java.lang.NoClassDefFoundError: Server/java

I see they are saying that server is not included in main, but that is the exact code I was given so I would presume that there won't be a stupid mistake like that.
here is the code
-----------------------------------------------------------
Exception in thread "main" java.lang.NoClassDefFoundError: Server/java

import java.net.*;
import java.io.*;

public class Server
{
public static void main(String[] args) throws IOException{
Socket client= null;
PrintWriter pout=null;
ServerSocket sock=null;

try{
sock= new ServerSocket(5155);
// now listen for connections

while(true){
client= sock.accept();

// we have a connection
pout = new PrintWriter(client.getOutputStream(), true);

// write the date to the socket
pout.println(new java.util.Date().toString());

pout.close();
client.close();
}
}
catch (IOException ioe) {
System.err.println(ioe);
}
finally {
if (client !=null)
client.close();
if (sock !=null)
sock.close();
}
}
}

If anyone has any suggestions I would appreciate it. Thanks

Reply With Quote
  #2  
Old February 26th, 2004, 10:44 PM
MadCowDzz's Avatar
MadCowDzz MadCowDzz is offline
I'm Internet Famous
Dev Articles Frequenter (2500 - 2999 posts)
 
Join Date: Jan 2003
Location: Toronto, Canada
Posts: 2,890 MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level)MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level)MadCowDzz User rank is Lance Corporal (50 - 100 Reputation Level) 
Time spent in forums: 1 Week 16 h 4 m 48 sec
Reputation Power: 8
Try just java Server

Remember, you're running your Class file, not your java file...

Reply With Quote
  #3  
Old February 27th, 2004, 10:29 AM
alex_bg_99 alex_bg_99 is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Posts: 2 alex_bg_99 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Thanks

Quote:
Originally Posted by MadCowDzz
Try just java Server

Remember, you're running your Class file, not your java file...

Okay I'll give it a try, and I'll post what happened

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingJava Development > Need help with Java please


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway