我正在使用Chat Server-client完成我的任务。这是我如何启动服务器
public static void StartServer(){
// Create socket
try {
serversocket = new ServerSocket(ServerPort);
} catch (Exception e) {
isError = true;
ERRORCODE = "ERROR! Cannot create a new socket! " + e.getMessage();
return;
}
// A new thread to wait for connection
Thread TH_Wait4Connection = new Thread(){
public void run(){
while(true){
String ERRORHere = "-1"; // To specify whre the Errors are
try {
Connection = new Socket();
Connection = serversocket.accept();
} catch (Exception e) {
ERRORCODE = ERRORHere + " : " + e.getMessage();
return;
}
// Another Thread to handle a connection
try {
ERRORHere = "1";
Thread Client = new Thread(new ConnHandler(Connection));
ERRORHere = "2";
threadList.add(Client);
ERRORHere = "3";
Client.start();
ERRORHere = "4";
} catch (Exception e) {
ERRORCODE = ERRORHere + " : " + e.getMessage();
return;
}
try {Thread.sleep(10);} catch (Exception e) {}
} // End why loop
} // End run()
};
TH_Wait4Connection.start();
}
当我在eclipse中调试时,我的客户端可以连接到服务器,一切都很好,服务器创建线程,没有异常捕获。但如果我跑,它会进入最后一次捕获和我的ERRORCODE
ERRORCODE = ERRORHere + " : " + e.getMessage();
是
1 : 6 > 4
这些错误是什么?以及如何解决它?
感谢阅读。
public class ConnHandler implements Runnable{
public ConnHandler(Socket Connection) throws Exception{
InputStream IS = Connection.getInputStream();
byte[] InData = new byte[1024];
int bytesCount = IS.read(InData);
// Remove first 6 bytes
byte[] NewInData = Arrays.copyOfRange(InData, 6, bytesCount);
}
public void run(){}
}
答案 0 :(得分:1)
您的问题是ConnHandler中的这一行:
byte[] NewInData = Arrays.copyOfRange(InData, 6, bytesCount);
当调用此行时,bytesCount为4.由于参数 FROM 大于参数 TO (6> 4),因此会抛出IllegalArgumentException。 See here了解有关此方法的更多信息。
通常,不建议捕获类型Exception而不是不同catch块中的子类型。您当前的实现可能会隐藏未经检查的异常。此外,如果您捕获子类型,您将知道发生了什么类型(无需手动检查)并更快地调试,就像您当前的情况一样。