0

对于我用 java 编码的服务器,我想添加一个控制台。我使用套接字连接到我的服务器。这是我为控制台编写的代码:

在我的服务器上:

public class ServerConsole
{   
    public String exec(String[] cmd)
    {
        try
        {
            Process child = Runtime.getRuntime().exec(cmd);

            InputStream in = child.getInputStream();
            StringBuffer buffer = new StringBuffer();
            int c;
            while ((c = in.read()) != -1)
            {
                buffer.append((char)c);
            }
            in.close();

            return buffer.toString();
        }
        catch (Exception e) {}

        return "FAILED";
    }
}

该类执行给定的命令并返回一个字符串,其中包含执行后控制台的内容。

我这样称呼这个方法:

String cmd_data_cmd = inputStream.readUTF();
String[] dataCmd = cmd_data_cmd.split("#");
OSCmd osCmd = new OSCmd();
outputStream.writeUTF(osCmd.exec(dataCmd));

其中 inputStream 是我与套接字一起使用的流。它运作良好!

现在,在客户端,我做到了:

String[] cmd = cmd_input.getText().split(" ");
String new_cmd = "";
for (String part : cmd)
    new_cmd += (new_cmd.equals("") ? "": "#") + part;

this.outputSocket.writeUTF(new_cmd);
DataInputStream result_input = new DataInputStream(this.input);
String tmp = result_input.readUTF();
System.out.println(tmp);

这应该返回我在控制台中显示的结果,但实际上,没有任何反应。当我启动那部分代码时,它就会冻结。

知道怎么做吗?

谢谢。

4

1 回答 1

0

这是解决方案:

String[] cmd_exec = {};
String os_name = System.getProperty("os.name").toLowerCase();
if (os_name.indexOf("win") >= 0)
    cmd_exec = new String[]{"cmd.exe", "/c", cmd};
else if (os_name.indexOf("mac") >= 0)
    cmd_exec = new String[]{"/usr/bin/open", "-a", cmd};
else if (os_name.indexOf("nix") >= 0 || os_name.indexOf("nux") >= 0)
    cmd_exec = new String[]{"/bin/bash", cmd};
else if (os_name.indexOf("sunos") >= 0)
    cmd_exec = new String[]{"/bin/bash", cmd};

Process child = Runtime.getRuntime().exec(cmd_exec);

String line;
while ((line = stdInput.readLine()) != null)
{
    buffer.append("\t" + new String(line.getBytes("UTF-8"), "UTF-8") + "\n");
}
stdInput.close();
while ((line = stdError.readLine()) != null)
{
    buffer.append("\t" + new String(line.getBytes("UTF-8"), "UTF-8") + "\n");
}
stdError.close();

child.destroy();

希望这对其他人有帮助。

于 2012-04-20T13:06:07.200 回答