📄 consolewindow.java
字号:
/**
@version 1.01 2004-05-10
@author Cay Horstmann
*/
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.io.*;
/**
A window that displays the bytes sent to System.out
and System.err
*/
public class ConsoleWindow
{
public static void init()
{
JFrame frame = new JFrame();
frame.setTitle("ConsoleWindow");
final JTextArea output = new JTextArea();
output.setEditable(false);
frame.add(new JScrollPane(output));
frame.setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);
frame.setLocation(DEFAULT_LEFT, DEFAULT_TOP);
frame.setFocusableWindowState(false);
frame.setVisible(true);
// define a PrintStream that sends its bytes to the
// output text area
PrintStream consoleStream = new PrintStream(new
OutputStream()
{
public void write(int b) {} // never called
public void write(byte[] b, int off, int len)
{
output.append(new String(b, off, len));
}
});
// set both System.out and System.err to that stream
System.setOut(consoleStream);
System.setErr(consoleStream);
}
public static final int DEFAULT_WIDTH = 300;
public static final int DEFAULT_HEIGHT = 200;
public static final int DEFAULT_LEFT = 200;
public static final int DEFAULT_TOP = 200;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -