简体   繁体   English

将变量传递给Java线程(run()方法)

[英]Passing variable to Java Thread (run() method)

I'm trying to pass the variable "name" from my main method to the run() method. 我正在尝试将变量“名称”从我的主要方法传递给run()方法。

I've tried this way how can I pass a variable into a new Runnable declaration? 我已经尝试过如何将变量传递到新的Runnable声明中?

But I couldn't get it to work. 但是我无法使它工作。 How can I pass that variable? 如何传递该变量? (I've inserted the other class needed to run the program in full.) (我已经插入了完整运行程序所需的另一个类。)

import java.io.PrintWriter;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.Scanner;
import java.net.InetAddress;
import java.lang.management.ManagementFactory;
import java.lang.management.RuntimeMXBean;



public class Server {

    static Scanner input = new Scanner(System.in);

    public static void main(String[] args) {

        try {
            final int port = 8181;
            ServerSocket server = new ServerSocket(port);
            System.out.println("Server is up and running, waiting for clients to connect.");

            while (true) {
                Socket sock = server.accept();
                System.out.println("A new user has connected");
                System.out.println("Type \"LIST\" to get a list of commands");
                System.out.println("Enter your Username"); final String name = input.nextLine();
                System.out.println("Now go to the client console to enter your messages");
                new Thread(new Client(sock)).start();
            }

        } catch (Exception e) {
            System.out.println("An error occured.");
            e.printStackTrace();
        }
    }

    static class Client implements Runnable {

        private Socket socket;
        int id;

        public Client(Socket sock)

        {
            id = 1;
            socket = sock;
        }

        @Override
        public void run() {

            long jvmUpTime = ManagementFactory.getRuntimeMXBean().getUptime();
            RuntimeMXBean mxBean = ManagementFactory.getRuntimeMXBean();

            try {

                Scanner in = new Scanner(socket.getInputStream());
                PrintWriter out = new PrintWriter(socket.getOutputStream());

                while (true) {

                    String data = in.nextLine();
                    System.out.println("User : " + data);

                    if (data.startsWith("LEAVENOW")) {
                        System.out.println("Client has left the server");
                        break;
                    }

                    if (data.startsWith("GETIP")) {
                        // System.out.println("Client connected from " +
                        // InetAddress.getLocalHost());
                        System.out.println("Client connected from " + InetAddress.getLocalHost());

                    }
                    if (data.startsWith("SERVERTIME")) {
                        System.out.println(mxBean.getUptime());

                    }
                    /*
                     * if (data.startsWith("SETNAME")) {
                     * 
                     * Scanner input = new Scanner(System.in);
                     * 
                     * System.out.println("Enter your Username"); final String
                     * name = input.nextLine();
                     * System.out.println("Press 1 to confirm your user name");
                     * int namenum = input.nextInt(); if (namenum == 1){
                     * 
                     * System.out.println("name changed"); }
                     * 
                     * 
                     * }
                     */
                    if (data.startsWith("LIST")) {
                        System.out.println("Here is a list of commands that the user can use in the server");
                        System.out.println(
                                "LEAVENOW = exit the server \nGETIP = Gets the IP address of the server \nSERVERTIME = The amount of milliseconds the server has been running \n ");

                    }

                    // send the line back to the client
                    // or whatever custom message we want
                    // out.println(line);
                    // out.flush();

                }

            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    }

}

The additional class to run the full program 运行完整程序的附加类

import java.io.IOException;
import java.io.PrintWriter;
import java.net.Socket;
import java.util.Scanner;

public class ClientInstance {
    final static int port = 8181;
    final static String host = "localhost";

    /**
     * @param args
     *            the command line arguments
     */
    public static void main(String[] args) throws IOException {

        try {

            Socket sock = new Socket(host, port);

            System.out.println("You connected to " + host);
            System.out.println("Now enter your message ");

            new Thread(new ClientWriter(sock)).start();
            new Thread(new ClientReader(sock)).start();

        } catch (Exception CannotConnect) {
            System.err.println("Could not connect to the server please try again, if error proceeds restart IDE");
        }
    }


    static class ClientWriter implements Runnable {

        public Socket socket;

        public ClientWriter(Socket sock) {
            socket = sock;
        }

        public void run() {
            try {
                Scanner chat = new Scanner(System.in);
                PrintWriter out = new PrintWriter(socket.getOutputStream());

                while (true) {

                    String input = chat.nextLine();
                    out.println(input);
                    out.flush();

                }

            } catch (Exception e) {
                e.printStackTrace();

            }
        }


    }

    static class ClientReader implements Runnable {

        public Socket socket;

        public ClientReader(Socket sock) {
            socket = sock;
        }

        public void run() {
            try {
                /* Scanner scanner = new Scanner(socket.getInputStream());
                  //read data from client
                 while(true) {
                      String data = scanner.nextLine();
                      System.out.println("Received data! : " + data);
                  }
                  */

            } catch (Exception e) {
                e.printStackTrace();

            }
        }


    }
}

So with @Berger advice I changed my code and edited this part. 因此,根据@Berger的建议,我更改了代码并编辑了这一部分。 All I did was add the string name as a parameter just like I did with socket sock. 我所做的就是将字符串名称添加为参数,就像使用套接字袜子一样。 However when I call the name variable in my run() method the string just prints null. 但是,当我在run()方法中调用name变量时,字符串仅显示null。

new Thread(new Client(sock, name)).start();
            }

        } catch (Exception e) {
            System.out.println("An error occured.");
            e.printStackTrace();
        }
    }

    static class Client implements Runnable {

        private Socket socket;
        int id;
        String name;

        public Client(Socket sock, String name)

        {
            id = 1;
            socket = sock;
            name = name;
        }

You need to assign your fields in a proper way. 您需要以适当的方式分配字段。 You need to do as below. 您需要执行以下操作。

this.name = name;

You have two different variables named as name . 您有两个名为name不同变量。 One is local variable (method parameter) and another is instance field . 一个是local variable (方法参数),另一个是instance field

What you have done is by name = name; 您所做的就是按name = name; you are assiging String referenced by your local variable name to same local variable name , instead what you should be doing is to assign String referenced by local variable name to instance field name ( which is this.name ). 您正在将本地变量name引用的String辅助到相同的本地变量name ,相反,您应该做的就是将本地变量name引用的String分配给实例字段name (这是this.name )。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM