gpt4 book ai didi

java - 错误 : java. lang.ArrayIndexOutOfBoundsException : 1, 如何处理

转载 作者:行者123 更新时间:2023-12-02 04:44:06 24 4
gpt4 key购买 nike

如何处理此代码中发出此消息的错误java.lang.ArrayIndexOutOfBoundsException: 1

为了使用 udp 套接字将数据包从客户端发送到服务器

    public class DatagramServer
{
private final static int PACKETSIZE = 100 ;

public static void main( String args[] )
{
// Check the arguments
if( args.length != 0 )
{
System.out.println( "usage: DatagramServer port" ) ;
return ;
}

try
{
// Convert the argument to ensure that is it valid
int port = Integer.parseInt( args[1] ) ;

// Construct the socket
DatagramSocket socket = new DatagramSocket( port ) ;

System.out.println( "The server is ready..." ) ;



}
}

最佳答案

数组元素从索引零开始,而不是1:

int port = Integer.parseInt( args[0] ) ;  // first argument is args[0]

关于java - 错误 : java. lang.ArrayIndexOutOfBoundsException : 1, 如何处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29834786/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com