Java小错误“Javaserver.java 1错误:需要class,interface或enum”
我在命令窗口下运行了测试的Helloworld是可以正常运行的,然后我运行下面一段代码就会出错。
我在eclipse下运行那个也是可以的,命令窗口下就不行了,本人是初学者,请高手指点!
->javac helloworld.java
->java helloworld
成功显示Hello World!
我输
->javac Javaserver.java
Javaserver.java 1错误:需要class,interface或enum
mport java.net.*;
public class helloworld{ public static void main(String[] args) { System.out.println("Hello World!!"); }}
import java.net.*; import java.io.*; public class Javaserver { public static void main(String args[]) { try { boolean flag=true; Socket clientSocket=null; String inputLine; int c; ServerSocket sSocket=new ServerSocket(8018); System.out.println("Server listen on:"+sSocket.getLocalPort()); while(flag) { clientSocket=sSocket.accept(); DataInputStream is= new DataInputStream(new BufferedInputStream(clientSocket.getInputStream())); OutputStream os=clientSocket.getOutputStream(); while((inputLine=is.readLine())!=null) { if(inputLine.equals("stop")) { flag=false; break; } else { System.out.println(inputLine); while((c=System.in.read())!=-1) { os.write((byte)c); if(c=='\n') { os.flush(); break; } } } } is.close(); os.close(); clientSocket.close(); } sSocket.close(); } catch(Exception e) { System.out.println("Exception :"+ e.getMessage()); } } }