不推荐使用DataInputStream类型的方法readLine()

时间:2017-01-14 19:23:44

标签: java user-input deprecated readline datainputstream

我有Chat-Client的这个Java代码 其中DataInputStream的定义如下:

private static DataInputStream is=null;

我在这方面不断收到错误:

public void run() {
/*
 * Keep on reading from the socket of the server    
 */
 String responseLine; //used to implement reading from the socket
 try{
     while((responseLine=is.readLine())!=null){ //when we recieve messages we print out here
         System.out.println(responseLine); // "is" is the object of data input stream
     }
     closed=true;
 }catch(IOException e){
     System.out.println("IOException: "+e);
 }


}

每次我尝试使用javadoc上的信息修复它:

Deprecated. This method does not properly convert bytes to characters. As of JDK 1.1, the preferred way to read lines of text is via the BufferedReader.readLine() method. Programs that use the DataInputStream class to read lines can be converted to use the BufferedReader class by replacing code of the form:

DataInputStream d = new DataInputStream(in);

使用:

BufferedReader d = new BufferedReader(new InputStreamReader(in));

我在此行的代码中收到另一个错误:

 is=new DataInputStream(clientSocket.getInputStream());

我该如何解决这个问题?我将非常感谢能在这件事上提供任何帮助

类客户端代码:

公共类Clientt实现Runnable {//首先我们实现聊天客户端

//the client socket        //sience we have multiple clients we are implementing threading in our application 
private static Socket clientSocket=null;
//the output stream
private static PrintStream os=null; //initializing the input & output streams
//the input stream
private static DataInputStream is=null;

private static BufferedReader inputLine=null;
private static boolean closed=false;
public static void main(String[]args)
{
    //the default port
    int portNumber=5000;
    //the default host
    String host="localhost";

    if(args.length<2)
    {
        System.out.println("Usage:Java Client <host> <portNumber>\n"
                +"now using host="+host+",portNumber="+portNumber);
    }
    else
    {
        host=args[0];
        portNumber=Integer.valueOf(args[1]).intValue();
    }

    /* 
     * Open a socket on a given host and port.
     * Open input and Output streams
     */

    try{
        clientSocket=new Socket(host,portNumber); //initializing clientsocket with mentioned host and port num
        inputLine=new BufferedReader(new InputStreamReader(System.in));//read input from the user using inputLine
        os=new PrintStream(clientSocket.getOutputStream());//outputstream is used to write to socket
        is=new DataInputStream(clientSocket.getInputStream());// inputstream is uset to read from socket
    }catch(UnknownHostException e){
        System.err.println("Don't know about host"+host);
    }catch(IOException e) {
        System.err.println("Couldn't get I/O for connection to the host"+host);
      }
    /*
     * If everything has been initialized then we want to write some date 
     * to the socket we have opened a connection to on the port portNumber
     */

    if(clientSocket!=null && os!=null && is!=null)
    {
        try{
            //Creat a thread to read from the server
            new Thread(new Clientt()).start(); //here we implement threading
            while(!closed)
            {
                os.println(inputLine.readLine());//loop continues infinetely untill we terminate application and writes to socket using output stream object
            }
            /*
             * Close the output stream,close the input stream,close the socket
             */
            os.close();
            is.close();
            clientSocket.close();
        }catch(IOException e)
        {
            System.out.println("IOException: "+e);

        }
    }

}

/*
 * Creat thread to read from the server
 * 
 */

//@Override

public void run() {
/*
 * Keep on reading from the socket of the server    
 */
 String responseLine; //used to implement reading from the socket
 try{
     while((responseLine=is.readLine())!=null){ //when we recieve messages we print out here
         System.out.println(responseLine); // "is" is the object of data input stream
     }
     closed=true;
 }catch(IOException e){
     System.out.println("IOException: "+e);
 }


}

}

1 个答案:

答案 0 :(得分:0)

您似乎无法正确应用BufferedReader而不是DataInputStream。您需要使用BufferedReaderInputStreamReader和原始输入流粘合在一起。

尝试以下更改:

首先是变量定义:

//private static DataInputStream is=null;
private static BufferedReader br=null;

然后实例化:

//is=new DataInputStream(clientSocket.getInputStream());//...
br=new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));

最后,只要你is,你就基本上改为br(因为close()readLine()DataInputStreamBufferedReader等其他方法都存在{1}})。