java运行显示在类中找不到主方法 请将主方法定义为......

packageexer15_3;importjava.io.BufferedInputStream;importjava.io.BufferedOutputStream;... package exer15_3;import java.io.BufferedInputStream;import java.io.BufferedOutputStream;import java.io.DataInputStream;import java.io.DataOutputStream;import java.io.IOException;import java.net.ServerSocket;import java.net.Socket;public class Server { private ServerSocket server; private Socket client; private DataInputStream in; private DataOutputStream out; private Boolean clientWantSay = false; public Server() throws IOException { server = new ServerSocket(8080); } public void startListen() throws IOException { client = server.accept(); in = new DataInputStream(new BufferedInputStream(client.getInputStream())); out = new DataOutputStream(new BufferedOutputStream(client.getOutputStream())); } public void send(String message) throws IOException { out.writeUTF(message); out.flush(); } public String accept() throws IOException { return in.readUTF(); } public void close() { try { if(in != null) { in.close(); } if(out != null) { out.close(); } server.close(); client.close(); } catch (Exception ex) {} } public void acceptRequest() throws IOException { int acc = in.readInt(); if(acc == 1) { clientWantSay = true; } else { clientWantSay= false; } } public Boolean getClientWantSay() { return clientWantSay; } public void answerToSay() throws IOException { out.writeInt(1); out.flush(); } public void answerNotSay() throws IOException { out.writeInt(0); out.flush(); } public String communicate(String sendStr) throws IOException { String accStr = null; //从客户端接收的话 if (this.getClientWantSay()) { //客户端有话想说 accStr = this.accept(); } else { //客户端无话可说 if (sendStr == null) { //服务器无话可说 this.answerNotSay(); } else { //服务器有话想说 this.answerToSay(); this.send(sendStr); } } return accStr; }} 展开
 我来答
子风相榕
2017-01-07 · 超过22用户采纳过TA的回答
知道答主
回答量:46
采纳率:100%
帮助的人:25.5万
展开全部
缺少main方法:
public static void main(String[] args) {

}
加上即可。
追问
应该加在哪个位置啊
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式