彩票走势图

Java标准输出重定向到GUI

转帖|其它|编辑:郝浩|2010-09-28 10:45:49.000|阅读 869 次

概述:本文主要介绍Java标准输出重定向到GUI,希望对大家有帮助。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

  实现输出从控制台到GUI并不复杂,只需要将标准输出重定向。

  重定向标准输出很easy,System 类里有两个静态方法setErr(PrintStream err) 和 setOut(PrintStream out) 分别用于重定位“标准”错误输出流和“标准”输出流。只需要在程序初始时设置即可:

  // GUIPrintStream guiPrintStream = new GUIPrintStream(System.out, jTextArea);

  System.setErr(guiPrintStream);

  System.setOut(guiPrintStream);

  在上面的代码中,我们发现一个新的类 GUIPrintStream,这是我们为 PrintStream 所做的包装。因为我们的输出目标位置是GUI,所以需要在 PrintStream 上做些文章,大家请看下面 GUIPrintStream 的代码:

  Java代码

  /**//*

  * To change this template, choose Tools | Templates

  * and open the template in the editor.

  */

  import java.io.OutputStream;

  import java.io.PrintStream;

  import javax.swing.SwingUtilities;

  import javax.swing.text.JTextComponent;

  /** *//**

  * 输出到文本组件的流。

  *

  * @author Chen Wei

  * @website www.chenwei.mobi

  * @email chenweionline@hotmail.com

  */

  public class GUIPrintStream extends PrintStream...{

  private JTextComponent component;

  private StringBuffer sb = new StringBuffer();

  public GUIPrintStream(OutputStream out, JTextComponent component)...{

  super(out);

  this.component = component;

  }

  /** *//**

  * 重写write()方法,将输出信息填充到GUI组件。

  * @param buf

  * @param off

  * @param len

  */

  @Override

  public void write(byte[] buf, int off, int len) ...{

  final String message = new String(buf, off, len);

  SwingUtilities.invokeLater(new Runnable()...{

  public void run()...{

  sb.append(message);

  component.setText(sb.toString());

  }

  });

  }

  }

/**//*

  * To change this template, choose Tools | Templates

  * and open the template in the editor.

  */

  import java.io.OutputStream;

  import java.io.PrintStream;

  import javax.swing.SwingUtilities;

  import javax.swing.text.JTextComponent;

  /** *//**

  * 输出到文本组件的流。

  *

  * @author Chen Wei

  * @website www.chenwei.mobi

  * @email chenweionline@hotmail.com

  */

  public class GUIPrintStream extends PrintStream...{

  private JTextComponent component;

  private StringBuffer sb = new StringBuffer();

  public GUIPrintStream(OutputStream out, JTextComponent component)...{

  super(out);

  this.component = component;

  }

  /** *//**

  * 重写write()方法,将输出信息填充到GUI组件。

  * @param buf

  * @param off

  * @param len

  */

  @Override

  public void write(byte[] buf, int off, int len) ...{

  final String message = new String(buf, off, len);

  SwingUtilities.invokeLater(new Runnable()...{

  public void run()...{

  sb.append(message);

  component.setText(sb.toString());

  }

  });

  }

  }

  类 GUIPrintStream,继承自 PrintStream 并且对它进行了一些修改。

  GUIPrintStream 在构造函数中增加了一个 JTextComponent 变量,它就是我们的目标输出 GUI 组件,它规定了目标输出组件是一个文本组件。接下来覆写了 write(byte[] buf, int off, int len)方法,这个方法原来的作用是将 len 字节从指定的初始偏移量为 off 的 byte 数组写入此流,现在经过我们的修改,变成了将 byte 数组包装成 String 写入目标 GUI 组件。

  简单的代码完成了将标准输出重定向到 GUI 的全过程。由此延伸,还可以将标准输出重定向到文本文件、从GUI获取标准输入等,就不一一介绍。

  测试:

  Java代码

  public class MainFrame extends javax.swing.JFrame {

  public MainFrame() {

  initComponents();

  // 重定向到通过文本组件构建的组件输出流中。

  System.setOut(new GUIPrintStream(System.out, textArea));

  }

  private void initComponents() {

  scrollPane = new javax.swing.JScrollPane();

  textArea = new javax.swing.JTextArea();

  btnOut = new javax.swing.JButton();

  setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

  setTitle("标准输出重定向到GUI - www.chenwei.mobi";);

  textArea.setColumns(20);

  textArea.setRows(5);

  scrollPane.setViewportView(textArea);

  getContentPane().add(scrollPane, java.awt.BorderLayout.CENTER);

  btnOut.setText("System.out.println(System.getProperties());");

  btnOut.addActionListener(new java.awt.event.ActionListener() {

  public void actionPerformed(java.awt.event.ActionEvent evt) {

  btnOutActionPerformed(evt);

  }

  });

  getContentPane().add(btnOut, java.awt.BorderLayout.PAGE_END);

  pack();

  }

  private void btnOutActionPerformed(java.awt.event.ActionEvent evt) {

  System.out.println(System.getProperties());

  }

  /**

  * @param args the command line arguments

  */

  public static void main(String args[]) {

  java.awt.EventQueue.invokeLater(new Runnable() {

  public void run() {

  new MainFrame().setVisible(true);

  }

  });

  }

  private javax.swing.JButton btnOut;

  private javax.swing.JScrollPane scrollPane;

  private javax.swing.JTextArea textArea;

  }


标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@pclwef.cn

文章转载自:网络转载

为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP