- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试让一个名为 JTA 的插件在 JInternalFrame 中运行。我尝试运行小程序版本并调用 Main.class,但没有成功。
我被告知无法使用 jInternalFrame.add(Object) 调用对象。当我尝试 de.mud.jta.Main main = new de.mud.jta.Main(); 时,我在编译时找不到适合 ADD 的方法,并且错误指向 jDesktopPane1.add(main);
这是我所知道的:
Main.class 创建一个新的 JFrame。如果有某种方法可以让它填充我的 jInternalFrame 而不是制作一个新的,那就太好了。我也对在我的应用程序中的 DesktopFrame 中打开新的 JFrame 感到满意。此时我什至愿意打开一个全新的框架(某种弹出窗口)。
这是 Main.class 源代码:
/*
* This file is part of "JTA - Telnet/SSH for the JAVA(tm) platform".
*
* (c) Matthias L. Jugel, Marcus Meißner 1996-2005. All Rights Reserved.
*
* Please visit http://javatelnet.org/ for updates and contact.
*
* --LICENSE NOTICE--
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
* --LICENSE NOTICE--
*
*/
package de.mud.jta;
import de.mud.jta.event.FocusStatusListener;
import de.mud.jta.event.OnlineStatusListener;
import de.mud.jta.event.ReturnFocusRequest;
import de.mud.jta.event.SocketRequest;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JOptionPane;
import javax.swing.KeyStroke;
import java.awt.PrintJob;
import java.awt.datatransfer.Clipboard;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.URL;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
/**
* <B>JTA - Telnet/SSH for the JAVA(tm) platform</B><P>
* This is the implementation of whole set of applications. It's modular
* structure allows to configure the software to act either as a sophisticated
* terminal emulation and/or, adding the network backend, as telnet
* implementation. Additional modules provide features like scripting or an
* improved graphical user interface.<P>
* This software is written entirely in Java<SUP>tm</SUP>.<P>
* This is the main program for the command line telnet. It initializes the
* system and adds all needed components, such as the telnet backend and
* the terminal front end. In contrast to applet functionality it parses
* command line arguments used for configuring the software. Additionally
* this application is not restricted in the sense of Java<SUP>tmp</SUP>
* security.
* <P>
* <B>Maintainer:</B> Matthias L. Jugel
*
* @version $Id: Main.java 499 2005-09-29 08:24:54Z leo $
* @author Matthias L. Jugel, Marcus Meissner
*/
public class Main {
private final static int debug = 0;
private final static boolean personalJava = false;
/** holds the last focussed plugin */
private static Plugin focussedPlugin;
/** holds the system clipboard or our own */
private static Clipboard clipboard;
private static String host, port;
public static void main(String args[]) {
final Properties options = new Properties();
try {
options.load(Main.class.getResourceAsStream("/de/mud/jta/default.conf"));
} catch (IOException e) {
System.err.println("jta: cannot load default.conf");
}
String error = parseOptions(options, args);
if (error != null) {
System.err.println(error);
System.err.println("usage: de.mud.jta.Main [-plugins pluginlist] "
+ "[-addplugin plugin] "
+ "[-config url_or_file] "
+ "[-term id] [host [port]]");
System.exit(0);
}
String cfg = options.getProperty("Main.config");
if (cfg != null)
try {
options.load(new URL(cfg).openStream());
} catch (IOException e) {
try {
options.load(new FileInputStream(cfg));
} catch (Exception fe) {
System.err.println("jta: cannot load " + cfg);
}
}
host = options.getProperty("Socket.host");
port = options.getProperty("Socket.port");
final JFrame frame = new JFrame("jta: " + host + (port.equals("23")?"":" " + port));
// set up the clipboard
try {
clipboard = frame.getToolkit().getSystemClipboard();
} catch (Exception e) {
System.err.println("jta: system clipboard access denied");
System.err.println("jta: copy & paste only within the JTA");
clipboard = new Clipboard("de.mud.jta.Main");
}
// configure the application and load all plugins
final Common setup = new Common(options);
if (port == null || port.length() == 0) {
if (setup.getPlugins().containsKey("SSH")) {
port = "22";
} else {
port = "23";
}
}
setup.registerPluginListener(new OnlineStatusListener() {
public void online() {
frame.setTitle("jta: " + host + (port.equals("23")?"":" " + port));
}
public void offline() {
frame.setTitle("jta: offline");
}
});
// register a focus status listener, so we know when a plugin got focus
setup.registerPluginListener(new FocusStatusListener() {
public void pluginGainedFocus(Plugin plugin) {
if (Main.debug > 0)
System.err.println("Main: " + plugin + " got focus");
focussedPlugin = plugin;
}
public void pluginLostFocus(Plugin plugin) {
// we ignore the lost focus
if (Main.debug > 0)
System.err.println("Main: " + plugin + " lost focus");
}
});
Map componentList = setup.getComponents();
Iterator names = componentList.keySet().iterator();
while (names.hasNext()) {
String name = (String) names.next();
JComponent c = (JComponent) componentList.get(name);
if (options.getProperty("layout." + name) == null) {
System.err.println("jta: no layout property set for '" + name + "'");
frame.add("South", c);
} else
frame.getContentPane().add(options.getProperty("layout." + name), c);
}
if (!personalJava) {
frame.addWindowListener(new WindowAdapter() {
public void windowClosing(WindowEvent evt) {
setup.broadcast(new SocketRequest());
frame.setVisible(false);
frame.dispose();
System.exit(0);
}
});
// add a menu bar
JMenuBar mb = new JMenuBar();
JMenu file = new JMenu("File");
file.setMnemonic(KeyEvent.VK_F);
JMenuItem tmp;
file.add(tmp = new JMenuItem("Connect"));
tmp.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_C, KeyEvent.SHIFT_MASK | KeyEvent.CTRL_MASK));
tmp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
String destination =
JOptionPane.showInputDialog(frame,
new JLabel("Enter your destination host (host[:port])"),
"Connect", JOptionPane.QUESTION_MESSAGE
);
if (destination != null) {
int sep = 0;
if ((sep = destination.indexOf(' ')) > 0 || (sep = destination.indexOf(':')) > 0) {
host = destination.substring(0, sep);
port = destination.substring(sep + 1);
} else {
host = destination;
}
setup.broadcast(new SocketRequest());
setup.broadcast(new SocketRequest(host, Integer.parseInt(port)));
}
}
});
file.add(tmp = new JMenuItem("Disconnect"));
tmp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
setup.broadcast(new SocketRequest());
}
});
file.addSeparator();
if (setup.getComponents().get("Terminal") != null) {
file.add(tmp = new JMenuItem("Print"));
tmp.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_P, KeyEvent.CTRL_MASK));
tmp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
PrintJob printJob =
frame.getToolkit().getPrintJob(frame, "JTA Terminal", null);
// return if the user clicked cancel
if (printJob == null) return;
((JComponent) setup.getComponents().get("Terminal"))
.print(printJob.getGraphics());
printJob.end();
}
});
file.addSeparator();
}
file.add(tmp = new JMenuItem("Exit"));
tmp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
frame.dispose();
System.exit(0);
}
});
mb.add(file);
JMenu edit = new JMenu("Edit");
edit.add(tmp = new JMenuItem("Copy"));
tmp.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_C, KeyEvent.CTRL_MASK));
tmp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
if (focussedPlugin instanceof VisualTransferPlugin)
((VisualTransferPlugin) focussedPlugin).copy(clipboard);
}
});
edit.add(tmp = new JMenuItem("Paste"));
tmp.setAccelerator(KeyStroke.getKeyStroke(KeyEvent.VK_V, KeyEvent.CTRL_MASK));
tmp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
if (focussedPlugin instanceof VisualTransferPlugin)
((VisualTransferPlugin) focussedPlugin).paste(clipboard);
}
});
mb.add(edit);
Map menuList = setup.getMenus();
names = menuList.keySet().iterator();
while (names.hasNext()) {
String name = (String) names.next();
mb.add((JMenu) menuList.get(name));
}
JMenu help = new JMenu("Help");
help.setMnemonic(KeyEvent.VK_HELP);
help.add(tmp = new JMenuItem("General"));
tmp.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Help.show(frame, options.getProperty("Help.url"));
}
});
mb.add(help);
frame.setJMenuBar(mb);
} // !personalJava
frame.pack();
if ((new Boolean(options.getProperty("Applet.detach.fullscreen"))
.booleanValue()))
frame.setSize(frame.getToolkit().getScreenSize());
else
frame.pack();
frame.setVisible(true);
if(debug > 0)
System.err.println("host: '"+host+"', "+host.length());
if (host != null && host.length() > 0) {
setup.broadcast(new SocketRequest(host, Integer.parseInt(port)));
}
/* make sure the focus goes somewhere to start off with */
setup.broadcast(new ReturnFocusRequest());
}
/**
* Parse the command line argumens and override any standard options
* with the new values if applicable.
* <P><SMALL>
* This method did not work with jdk 1.1.x as the setProperty()
* method is not available. So it uses now the put() method from
* Hashtable instead.
* </SMALL>
* @param options the original options
* @param args the command line parameters
* @return a possible error message if problems occur
*/
private static String parseOptions(Properties options, String args[]) {
boolean host = false, port = false;
for (int n = 0; n < args.length; n++) {
if (args[n].equals("-config"))
if (!args[n + 1].startsWith("-"))
options.put("Main.config", args[++n]);
else
return "missing parameter for -config";
else if (args[n].equals("-plugins"))
if (!args[n + 1].startsWith("-"))
options.put("plugins", args[++n]);
else
return "missing parameter for -plugins";
else if (args[n].equals("-addplugin"))
if (!args[n + 1].startsWith("-"))
options.put("plugins", args[++n] + "," + options.get("plugins"));
else
return "missing parameter for -addplugin";
else if (args[n].equals("-term"))
if (!args[n + 1].startsWith("-"))
options.put("Terminal.id", args[++n]);
else
return "missing parameter for -term";
else if (!host) {
options.put("Socket.host", args[n]);
host = true;
} else if (host && !port) {
options.put("Socket.port", args[n]);
port = true;
} else
return "unknown parameter '" + args[n] + "'";
}
return null;
}
}
我怎样才能让这个类运行,并让它创建的内容在我的应用程序的框架中运行?
最佳答案
由于这是 GPL 代码,因此您可以根据需要重写它。
现在,JFrame 是静态 main 方法中的局部变量,它不是从外部可用的属性,也不是您可以获取的返回值,也不是您可以处理的参数,这被填充。
不修改源代码:否。
关于java - 从 JAR 运行 Main.class,在应用程序框架中显示结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10033884/
我是 C 语言新手,我编写了这个 C 程序,让用户输入一年中的某一天,作为返回,程序将输出月份以及该月的哪一天。该程序运行良好,但我现在想简化该程序。我知道我需要一个循环,但我不知道如何去做。这是程序
我一直在努力找出我的代码有什么问题。这个想法是创建一个小的画图程序,并有红色、绿色、蓝色和清除按钮。我有我能想到的一切让它工作,但无法弄清楚代码有什么问题。程序打开,然后立即关闭。 import ja
我想安装screen,但是接下来我应该做什么? $ brew search screen imgur-screenshot screen
我有一个在服务器端工作的 UDP 套接字应用程序。为了测试服务器端,我编写了一个简单的 python 客户端程序,它发送消息“hello world how are you”。服务器随后应接收消息,将
我有一个 shell 脚本,它运行一个 Python 程序来预处理一些数据,然后运行一个 R 程序来执行一些长时间运行的任务。我正在学习使用 Docker 并且我一直在运行 FROM r-base:l
在 Linux 中。我有一个 c 程序,它读取一个 2048 字节的文本文件作为输入。我想从 Python 脚本启动 c 程序。我希望 Python 脚本将文本字符串作为参数传递给 c 程序,而不是将
前言 最近开始整理笔记里的库存草稿,本文是 23 年 5 月创建的了(因为中途转移到 onedrive,可能还不止) 网页调起电脑程序是经常用到的场景,比如百度网盘下载,加入 QQ 群之类的 我
对于一个类,我被要求编写一个 VHDL 程序,该程序接受两个整数输入 A 和 B,并用 A+B 替换 A,用 A-B 替换 B。我编写了以下程序和测试平台。它完成了实现和行为语法检查,但它不会模拟。尽
module Algorithm where import System.Random import Data.Maybe import Data.List type Atom = String ty
我想找到两个以上数字的最小公倍数 求给定N个数的最小公倍数的C++程序 最佳答案 int lcm(int a, int b) { return (a/gcd(a,b))*b; } 对于gcd,请查看
这个程序有错误。谁能解决这个问题? Error is :TempRecord already defines a member called 'this' with the same paramete
当我运行下面的程序时,我在 str1 和 str2 中得到了垃圾值。所以 #include #include #include using namespace std; int main() {
这是我的作业: 一对刚出生的兔子(一公一母)被放在田里。兔子在一个月大时可以交配,因此在第二个月的月底,每对兔子都会生出两对新兔子,然后死去。 注:在第0个月,有0对兔子。第 1 个月,有 1 对兔子
我编写了一个程序,通过对字母使用 switch 命令将十进制字符串转换为十六进制,但是如果我使用 char,该程序无法正常工作!没有 switch 我无法处理 9 以上的数字。我希望你能理解我,因为我
我是 C++ 新手(虽然我有一些 C 语言经验)和 MySQL,我正在尝试制作一个从 MySQL 读取数据库的程序,我一直在关注这个 tutorial但当我尝试“构建”解决方案时出现错误。 (我正在使
仍然是一个初学者,只是尝试使用 swift 中的一些基本函数。 有人能告诉我这段代码有什么问题吗? import UIKit var guessInt: Int var randomNum = arc
我正在用 C++11 编写一个函数,它采用 constant1 + constant2 形式的表达式并将它们折叠起来。 constant1 和 constant2 存储在 std::string 中,
我用 C++ 编写了这段代码,使用运算符重载对 2 个矩阵进行加法和乘法运算。当我执行代码时,它会在第 57 行和第 59 行产生错误,非法结构操作(两行都出现相同的错误)。请解释我的错误。提前致谢:
我是 C++ 的初学者,我想编写一个简单的程序来交换字符串中的两个字符。 例如;我们输入这个字符串:“EXAMPLE”,我们给它交换这两个字符:“E”和“A”,输出应该类似于“AXEMPLA”。 我在
我需要以下代码的帮助: 声明 3 个 double 类型变量,每个代表三角形的三个边中的一个。 提示用户为第一面输入一个值,然后 将用户的输入设置为您创建的代表三角形第一条边的变量。 将最后 2 个步
我是一名优秀的程序员,十分优秀!