如何从ArrayList中删除IndexOutOfBoundsException

时间:2013-04-05 18:17:14

标签: java indexoutofboundsexception

当我启动服务器并且客户端连接到它时,我收到此错误:

Waiting for clients ...
Client connected from: Driton PC
java.lang.IndexOutOfBoundsException: Index: 1, Size: 1

我不太明白为什么会发生这种情况,因为我从互联网上追随另一个并且他的例子有效并且我没有

public class ChatServer { 

public static ArrayList<Socket> ConnectionArray = new ArrayList<Socket>();

public static ArrayList<String> CurrentUsers = new ArrayList<String>();

public static void main(String[] args) throws IOException{
    try
    {
        final int PORT = 444;
        ServerSocket SERVER = new ServerSocket(PORT);
        System.out.println("Waiting for clients...");

        while(true)
        {
            Socket SOCK = SERVER.accept();
            ConnectionArray.add(SOCK);
            System.out.println("Client connected from: "+ SOCK.getLocalAddress().getHostName());
            AddUserName(SOCK);
            Chat_Server_Return CHAT = new Chat_Server_Return(SOCK);
            Thread x = new Thread(CHAT); 
            x.start();
        }
    }
        catch(Exception x){System.out.println(x);}
}

public static void AddUserName(Socket X) throws IOException
{
    Scanner INPUT = new Scanner(X.getInputStream());
    String UserName = INPUT.nextLine();
    CurrentUsers.add(UserName);
    for(int i = 1; 1 <= ChatServer.ConnectionArray.size(); i++){
        Socket TEMP_SOCK = (Socket) ChatServer.ConnectionArray.get(i-1);
        PrintWriter OUT = new PrintWriter(TEMP_SOCK.getOutputStream());
        OUT.println("#?!"+ CurrentUsers);
        OUT.flush();

    }
}

它运行for循环两次。

2 个答案:

答案 0 :(得分:5)

如果没有删除任何内容,则for循环的条件不正确。改为:

i <= ChatServer.ConnectionArray.size()

但处理for循环的传统方法是遵循基于0的索引,而稍后减去一个:

for(int i = 0; i < ChatServer.ConnectionArray.size(); i++){
    Socket TEMP_SOCK = (Socket) ChatServer.ConnectionArray.get(i);

答案 1 :(得分:0)

轻松执行阵列长度检查。

访问集合而不是该数组时,

java.lang.IndexOutOfBoundsException真的被抛出。

有一种类型的这种异常已知ArrayIndexOutOfBoundsException类似,但解决相同问题的目的只是使用检查集合的大小,以确保你没有超出它的赏金。