跨方法使用变量/对象 - Java

时间:2016-04-19 20:14:39

标签: java variables object methods

所以,在下面的代码中,我试图通过我的一些方法来识别对象“reader”和“writer”,所以我以后可以同时运行它们(我在想使用线程)。所以这基本上是我的问题,有没有办法让“读者”和“作家”对象在我的其他方法中得到认可?

package com.Kaelinator;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.time.LocalDateTime;
import java.time.temporal.ChronoField;

public class ServerManager2 {

  static boolean Running = false;
  //static String command = "C:/Users/Kael/Desktop/minecraftserver/RUN.bat";
  static String command = "C:/Users/Owner/Desktop/rekt/Run.bat";
  static String shutDown = "C:/Windows/System32/shutdown.exe -r -t 0";



  public static void main(String[] args) throws IOException {
    runServer();
    while (Running) {
      chatChecker();
    }

    Commands();

  }




  public static void chatChecker() {
    LocalDateTime now = LocalDateTime.now();
    int hour = now.get(ChronoField.HOUR_OF_DAY);
    int minute = now.get(ChronoField.MINUTE_OF_HOUR);
    int second = now.get(ChronoField.SECOND_OF_MINUTE);

    String hourSyntax = Integer.toString(hour);
    String minuteSyntax = Integer.toString(minute);
    String secondSyntax = Integer.toString(second);

    String chatChecker = "[" + hourSyntax + ":" + minuteSyntax + ":" + secondSyntax +
      "] [Server thread/INFO]: ";
    System.out.println(chatChecker);
  }

  public static void sleepThread(long time) {

    try {
      Thread.sleep(time * 1000);
    } catch (InterruptedException e) {
      e.printStackTrace();
    }

  }


  public static void runServer() throws IOException {
    Process process = Runtime.getRuntime().exec(command);
    BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(process.getOutputStream()));
    process.getInputStream();

    BufferedReader reader = new BufferedReader(new InputStreamReader(process.getInputStream()));
  }

  public static void readOutput() {
    String line;
    while ((line = reader.readLine()) != null) {
      System.out.println(line);
    }
  }

  public static void Commands() throws IOException {

    Running = true;

    try {

      sleepThread(3);
      writer.append("say SERVER STARTED");
      writer.newLine();
      writer.flush();
      sleepThread(14100);
      writer.append("say restarting in 5 minutes");
      writer.newLine();
      writer.flush();
      sleepThread(60);
      writer.append("say restarting in 4 minutes");
      writer.newLine();
      writer.flush();
      sleepThread(60);
      writer.append("say restarting in 3 minutes");
      writer.newLine();
      writer.flush();
      sleepThread(60);
      writer.append("say restarting in 2 minutes");
      writer.newLine();
      writer.flush();
      sleepThread(60);
      writer.append("say restarting in 1 minutes");
      writer.newLine();
      writer.flush();
      sleepThread(30);
      writer.append("say restarting in 30 seconds");
      writer.newLine();
      writer.flush();
      sleepThread(20);
      writer.append("say restarting in 10 seconds");
      writer.newLine();
      writer.flush();
      sleepThread(5);
      writer.append("say restarting in 5 seconds");
      writer.newLine();
      writer.flush();
      sleepThread(1);
      writer.append("say restarting in 4 seconds");
      writer.newLine();
      writer.flush();
      sleepThread(1);
      writer.append("say restarting in 3 seconds");
      writer.newLine();
      writer.flush();
      sleepThread(1);
      writer.append("say restarting in 2 seconds");
      writer.newLine();
      writer.flush();
      sleepThread(1);
      writer.append("say restarting in 1 second");
      writer.newLine();
      writer.flush();
      writer.append("stop");
      writer.close();


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

1 个答案:

答案 0 :(得分:0)

虽然这不是推荐的面向对象的做法,但实现目标的一种方法是将readerwriter设置为static字段,就像您的{{1}一样} field。

编辑:

以下代码编译并运行。我添加了两个静态字段,并在方法上添加了缺少的Running

throws