⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 outputframe.java

📁 一个agent 工具包,可以开发移动设备应用,考虑了安全措施
💻 JAVA
字号:
// Frame per l'interfaccia utente: fornisce una console grafica
// Con un input stream, un output stream, un buffered input reader
// Meccanismi di sincronizzazione per la chiusura.
//
// @author Livio Profiri
// @version 17/2/99



package SOMA.output;

/*
	This simple extension of the java.awt.Frame class
	contains all the elements necessary to act as the
	main window of an application.
 */

import java.awt.*;
import java.io.*;
import javax.swing.JTextArea;
import javax.swing.JScrollPane;


public class OutputFrame extends Frame
{
	public transient PrintStream out;          // Analogo a System.out
	public transient BufferedReader inBufferedReader;
                                           // Utile per fare readLine()
	public TextFieldInputStream in;            // Analogo a System.in
  public JTextAreaOutputStream ListOut;
  //public ListOutputStream ListOut;  // Non 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -