如何在不关闭BufferedReader

时间:2015-12-30 20:13:16

标签: java bufferedreader

首先,我很抱歉我的英语。 :-)这是我在这里的第一篇文章。

我有应用程序,比如洪流。我在一台计算机上运行它,但是有两个或更多实例。我必须问用户他想要什么文件,并将此文件发送给客户。如果我想要它是主机到主机或多主机。 我的问题是:当我发送到目录中的客户列表文件时,他选择其中一个并发送到服务器nameFile。然后服务器将此文件发送给客户端。但是当我发送listFile时,我必须关闭bufferedreader,因为readline()是阻塞的。但是,如果我关闭,我没有联系。任何的想法? 请为任何提议。这是我的代码:

服务器:

public class Server extends Thread {

    private Socket s;
    int numerKlienta;
    String line;
    List<String> list = new ArrayList();

    private ServerSocket serverSocket;
    String nazwaPliku = "";
    PrintWriter outToClient;
    String text = "";
    String tmp = "";

    public Server(int port) throws Exception {

        serverSocket = new ServerSocket(port);
        while (true) {

            Socket clientSocket = serverSocket.accept();
            BufferedReader inFromClient = new BufferedReader(new InputStreamReader(clientSocket.getInputStream()));

            outToClient = new PrintWriter(clientSocket.getOutputStream(), true);

            String path = "C:\\Users\\Ania\\Desktop";



            File directory = new File(path);

            File[] files = directory.listFiles();

            for (int j = 0; j < files.length; j++) {
                if (files[j].isFile()) {

                    text = files[j].getName();


                    outToClient.println(text);

                }

            }

            //outToClient.flush();
            outToClient.close();      //i must close beacuse in client when           i writeBytes its blocking next steps

            nazwaPliku = inFromClient.readLine();
            System.out.println(nazwaPliku);

            outToClient.close();
        }

    }


}

客户端:

public class Client {




    public Client(String host, int port) throws Exception{

             s = new Socket(host, port);


             DataOutputStream   outToServer= new DataOutputStream(s.getOutputStream());

    BufferedReader inFromServer =
             new BufferedReader(new
             InputStreamReader(s.getInputStream())); 

    System.out.println("lista plików w katalogu : ");
    while ((( odpowiedz = inFromServer.readLine()) != null)){  


     System.out.println( odpowiedz);
    }

    //here is blocking and stop 



        System.out.println(" Jaki plik chcesz przesłać? podaj pełną nazwę");
        Scanner sc= new Scanner(System.in);
        String nazwaPliku=sc.next();
            outToServer.writeBytes(nazwaPliku);
        //saveFile(nazwaPliku);

    }

我的主要:

public class Main {

    public static void main(String[] args) throws Exception {

        Server serwer=null;
        System.out.println("Czy czy chcesz rozpocząc pracę jako serwer? (t/n)");
        Scanner sc = new Scanner(System.in);
        String odpowiedz = sc.next();
        if (odpowiedz.equals("t")) {

            System.out.println(" Na jakim porcie rozpocząc nasłuch?");
            sc = new Scanner(System.in);
            int portSerwera = sc.nextInt();
             serwer = new Server(portSerwera);
            //serwer.start();


        } 
        else{

            System.out.println("Czy chcesz rozpocząc połączenie z jakimś serwerem? (t/n)");
            sc = new Scanner(System.in);
            odpowiedz = sc.next();

            if (odpowiedz.equals("t")) {

                System.out.println("podaj numer portu do połączenia z serwerem");
                sc = new Scanner(System.in);
                int portKlienta = sc.nextInt();
                Client fc = new Client("localhost", portKlienta);

1 个答案:

答案 0 :(得分:1)

您需要设计一个带有结构化消息的协议,而不仅仅是发送行。客户端必须知道消息何时结束。

例如,您可以通过发送空行(1)来决定结束文件列表。

当客户端读取文件时,当它收到空行时,它知道列表已终止,并且由客户端现在发送它的选择。

使用分隔符是一种方法。另一种方法可以是发送“分组”,其中每个分组以在分组中期望的多个字节或字符开始。因此,客户端知道它必须读取N个字节才能读取整个数据包,并且一旦读取数据包,它就应该发送它的选择,然后读取另一个数据包(2)。

(1)和(2):请注意,您最常使用的协议使用这两种策略:HTTP。 HTTP响应的标头以空行结束。它通常包含响应主体的内容长度。