- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的程序代码
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
class JAdapterOkno extends WindowAdapter {
public void windowClosing(WindowEvent e) {
System.exit(0);
}
}
class CalcButton extends JButton implements ActionListener {
Kontroler k;
CalcButton(Kontroler k, String nazwa, int s) {
super(nazwa);
this.k = k;
setFocusable(false);
this.setFont(new Font("Tahoma", Font.BOLD, s));
addActionListener(this);
}
public void actionPerformed(ActionEvent er) {
k.dopisz(this);
}
}
class InfoButton extends JButton implements ActionListener {
Kontroler k;
InfoButton(Kontroler k, int s) {
super("Info");
this.k = k;
setFocusable(false);
addActionListener(this);
this.setFont(new Font("Tahoma", Font.BOLD, s));
}
public void actionPerformed(ActionEvent err) {
k.info();
}
}
class ClearButton extends JButton implements ActionListener {
Kontroler k;
ClearButton(Kontroler k, int s) {
super("C");
this.k = k;
setFocusable(false);
addActionListener(this);
this.setFont(new Font("Tahoma", Font.BOLD, s));
}
public void actionPerformed(ActionEvent errr) {
k.clear();
}
}
class Wyswietlacz extends JTextPane implements KeyListener {
Kontroler z;
Wyswietlacz(Kontroler zz, int k) {
super();
z = zz;
setFocusable(true);
setEditable(false);
this.setFont(new Font("Tahoma", Font.PLAIN, k));
addKeyListener(this);
}
public void keyPressed(KeyEvent evt) {
char c = evt.getKeyChar();
if (c == '0' || c == '1') {
if (z.LorP) {
if (z.Lwyr.length() < 16) {
z.Lwyr.append(c);
}
} else {
if (z.Pwyr.length() < 16) {
z.Pwyr.append(c);
}
}
} else {
if (z.sign == '2' && c != '=' && z.Lwyr.length() != 0) {
z.LorP = false;
z.sign = c;
}
if (z.sign != '2' && c == '=') {
z.eval(true);
}
}
z.eval(false);
StringBuilder fin = new StringBuilder(z.Lwyr);
if (z.sign != '2') {
fin.append(z.sign);
fin.append(z.Pwyr);
}
setText(fin.toString());
}
public void keyReleased(KeyEvent evt) {
;
}
public void keyTyped(KeyEvent evt) {
;
}
}
public class Kontroler extends JApplet {
JMenuBar menuBar;
/**
* < Zmienna menubar
*/
JMenu menu;
/**
* < zmienna menu
*/
JMenuItem menuItem;
/**
* < zmienna element menu
*/
StringBuilder Lwyr;
/**
* < zmienna lewe wyrazenie obliczenia
*/
StringBuilder Pwyr;
/**
* < zmienna prawe wyrazenie obliczenia
*/
final int modulo = (int) Math.pow(2.0, 15.0);
/**
* < stala
*/
char sign;
/**
* < dzialanie
*/
Boolean LorP;
int x;
int y;
CalcButton inf;
/**
* < przycisk gui
*/
CalcButton zero;
/**
* < przycisk gui
*/
CalcButton one;
/**
* < przycisk gui
*/
CalcButton add;
/**
* < przycisk gui
*/
CalcButton sub;
/**
* < przycisk gui
*/
CalcButton div;
/**
* < przycisk gui
*/
CalcButton mlt;
/**
* < przycisk gui
*/
CalcButton modu;
/**
* < przycisk gui
*/
ClearButton blank;
/**
* < przycisk gui
*/
Wyswietlacz wys;
/**
* < wyswietlacz
*/
JPanel przyciski;
/**
* < panel guzikow
*/
JPanel calosc;
/**
* < panel
*/
/**
* metoda inicjalizujaca applet
*/
public void st() {
menuBar = new JMenuBar();
menu = new JMenu("informacje");
menuItem = new JMenuItem("Info");
menuItem.addActionListener(
new ActionListener() {
public void actionPerformed(ActionEvent e) {
info();
}
});
menuBar.add(menu);
menu.add(menuItem);
setJMenuBar(menuBar);
float xx = x / 240;
float yy = y / 320;
int avg = (int) ((xx + yy) / 2);
System.out.println(modulo);
setPreferredSize(new Dimension(x, y));
inf = new CalcButton(this, "=", 15 * avg);
zero = new CalcButton(this, "0", 15 * avg);
one = new CalcButton(this, "1", 15 * avg);
add = new CalcButton(this, "+", 15 * avg);
sub = new CalcButton(this, "-", 15 * avg);
div = new CalcButton(this, "/", 15 * avg);
mlt = new CalcButton(this, "*", 15 * avg);
modu = new CalcButton(this, "%", 15 * avg);
blank = new ClearButton(this, 20 * avg);
wys = new Wyswietlacz(this, 15 * avg);
wys.setPreferredSize(new Dimension(x, (int) (y / 4)));
przyciski = new JPanel();
przyciski.setPreferredSize(new Dimension(x, x));
przyciski.setLayout(new GridLayout(3, 3));
przyciski.add(zero);
przyciski.add(one);
przyciski.add(add);
przyciski.add(sub);
przyciski.add(mlt);
przyciski.add(div);
przyciski.add(modu);
przyciski.add(inf);
przyciski.add(blank);
przyciski.setFocusable(false);
calosc = new JPanel();
calosc.setLayout(new BoxLayout(calosc, BoxLayout.Y_AXIS));
calosc.add(wys);
calosc.add(przyciski);
calosc.setPreferredSize(new Dimension(x, y));
calosc.setFocusable(false);
add(calosc);
setFocusable(false);
}
public void init() {
st();
}
public void destroy() {
;
}
public void stop() {
;
}
Kontroler() {
this.Lwyr = new StringBuilder();
this.Pwyr = new StringBuilder();
this.sign = '2';
this.LorP = true;
this.x = 240;
this.y = 320;
}
Kontroler(int x, int y) {
if (x < 240 || y < 320) {
JOptionPane.showMessageDialog(null,
"Program nie dziala przy tak malej wielkosci okna");
System.exit(0);
}
this.Lwyr = new StringBuilder();
this.Pwyr = new StringBuilder();
this.sign = '2';
this.LorP = true;
this.x = x;
this.y = y;
}
void info() {
JOptionPane.showMessageDialog(null, "Calc v1.1");
}
void dopisz(CalcButton c) {
String actual = c.getText();
char ac = actual.charAt(0);
if (ac == '0' || ac == '1') {
if (LorP) {
if (Lwyr.length() < 16) {
Lwyr.append(ac);
}
} else {
if (Pwyr.length() < 16) {
Pwyr.append(ac);
}
}
} else {
if (sign == '2' && ac != '=' && Lwyr.length() != 0) {
LorP = false;
sign = ac;
}
if (sign != '2' && ac == '=') {
eval(true);
}
}
eval(false);
StringBuilder fin = new StringBuilder(Lwyr);
if (sign != '2') {
fin.append(sign);
fin.append(Pwyr);
}
c.k.wys.setText(fin.toString());
}
void clear() {
this.Lwyr = new StringBuilder();
this.Pwyr = new StringBuilder();
this.wys.setText("");
}
void eval(Boolean t) {
int l;
int p;
if (Lwyr.length() == 0) {
return;
}
if (t || (Lwyr.length() == 16 && Pwyr.length() == 16 && sign != '2')) {
if (Pwyr.length() == 0) {
Pwyr = Lwyr;
}
l = Integer.parseInt(Integer.valueOf(this.Lwyr.toString(), 2).toString());
p = Integer.parseInt(Integer.valueOf(this.Pwyr.toString(), 2).toString());
if (l == 0 && p == 0) {
Lwyr = new StringBuilder();
Pwyr = new StringBuilder();
sign = '2';
this.LorP = true;
}
switch (this.sign) {
case '+':
this.Lwyr = new StringBuilder(Integer.toString((l + p) % modulo, 2));
break;
case '-':
this.Lwyr = new StringBuilder(Integer.toString((l - p) % modulo, 2));
break;
case '*':
this.Lwyr = new StringBuilder(Integer.toString((l * p) % modulo, 2));
break;
case '/':
this.Lwyr = new StringBuilder(Integer.toString((l / p) % modulo, 2));
break;
case '%':
this.Lwyr = new StringBuilder(Integer.toString((l % p) % modulo, 2));
break;
}
Pwyr = new StringBuilder();
sign = '2';
this.LorP = true;
}
}
/**
* Metoda main
*/
public static void main(String[] args) {
JFrame f = new JFrame();
Kontroler k;
if (args.length == 0) {
k = new Kontroler();
f.add(k);
k.init();
} else {
k = new Kontroler(Integer.parseInt(args[0]), Integer.parseInt(args[1]));
f.add(k);
k.init();
}
f.pack();
f.setVisible(true);
f.setResizable(false);
}
}
这里是完全异常(exception)
basic: exception: java.lang.reflect.InvocationTargetException.
java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.runOnEDTAndWait(Unknown Source)
at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter.instantiateApplet(Unknown Source)
at sun.plugin2.applet.Plugin2Manager.initAppletAdapter(Unknown Source)
at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: java.lang.reflect.InvocationTargetException
at com.sun.deploy.uitoolkit.impl.awt.OldPluginAWTUtil.invokeAndWait(Unknown Source)
... 5 more
Caused by: java.lang.RuntimeException: java.lang.IllegalAccessException:
Class com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter$1 can not
access a member of class Kontroler with modifiers ""
at com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter$1.run(Unknown Source)
at java.awt.event.InvocationEvent.dispatch(Unknown Source)
at java.awt.EventQueue.dispatchEventImpl(Unknown Source)
at java.awt.EventQueue.access$200(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.awt.EventQueue$3.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue$4.run(Unknown Source)
at java.awt.EventQueue$4.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(Unknown Source)
at java.awt.EventQueue.dispatchEvent(Unknown Source)
at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
at java.awt.EventDispatchThread.run(Unknown Source)
Caused by: java.lang.IllegalAccessException:
Class com.sun.deploy.uitoolkit.impl.awt.AWTAppletAdapter$1 can not
access a member of class Kontroler with modifiers ""
at sun.reflect.Reflection.ensureMemberAccess(Unknown Source)
at java.lang.Class.newInstance0(Unknown Source)
at java.lang.Class.newInstance(Unknown Source)
... 20 more
当我“正常”运行时,它工作;但是当我尝试在网络浏览器中将它作为小程序运行时,我收到调用目标异常?我的错误在哪里?我实际上看不到异常从哪里开始,因为我在 Java 控制台中没有任何详细信息
最佳答案
异常的根本原因,IllegalAccessException
,提示快速回顾What Applets Can and Cannot Do ,但您的小程序似乎没有违反沙箱。
用appletviewer
运行,如图here , 显示以下错误,通过使 Kontroler
构造函数 public
解决。
load: Kontroler is not public or has no public constructor.java.lang.IllegalAccessException: Class sun.applet.AppletPanel can not access a member of class Kontroler with modifiers ""...
此外,
使用 Key Bindings和 Action
,图文并茂here .
考虑使用替代方法构建混合小程序/应用程序,如图所示 here .
考虑使用替代方法部署混合小程序/应用程序,如图所示 here .
不要使用 setPreferredSize()
.
关于java - 调用目标异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16211277/
我创建了一个基于命令行可移植脚本的工业化不可知构建系统,可用于快速构建多个依赖项目,而不必依赖特定的 IDE 或构建工厂。它是不可知的,因为它不是基于单个构建引擎。我使用 cmake 创建了第一个版本
我最初使用 Java 目标开发了一个语法(用于 TestRig 支持),然后将其移植到 Python(从 git hub 语法存储库扩展了 Python3 语法,因此需要将操作移植到 Python
我有一个以 iPhone 和 watchOS 为目标的 Xcode 项目。 iPhone 目标使用加速度计,模拟器不支持。我可以只启动 iPhone 应用程序而不启动 watch 目标吗?我从: Ca
您好,我想创建一个批处理文件,用于在 .eml 文件(目标 A)中查找某些关键字,然后删除它们所在的行。之后,我需要批处理文件将"new"文件放入(目标 B)中的单独 .eml 文件中。文件也可以是
当尝试通过 IntelliJ 运行示例 CorDapp (GitHub CorDapp) 时,我收到以下错误: Cannot inline bytecode built with JVM target
我在尝试向我的 kotlin spring 项目添加一些依赖项时遇到问题。我使用 spring boot 初始化程序来运行一个基本项目。 我的问题:如果我取消对 jackson 或 Koin 依赖项的
这是有问题的网站: http://www.onepixelroom.com/londonrefurb 当我点击关于部分后面的多个圆圈时,我希望它更改上面文本中的引号。 到目前为止,我得到它来显示 文本
单击后,我将删除两个元素 $(this) 和 $("#foo")。 目前我的代码如下所示: $(this).remove(); $("#foo").remove(); 如何在不重复自己的情况下优化它?
我有一个小脚本,可将 Markdown 文件编译为 html,并将其与一些样式表和 javascript 一起插入到模板的主体中。我有一个 GNU makefile 来完成这个: output.htm
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
一些背景知识: 在android中我们开发了同样的应用,基本上我们先开发了Android应用,现在我们创建了它的IOS版本,所以这个应用有多个客户端。在 android 中,我们实际上是使用 Andr
我想知道是否可以使用 knockout 来更改html中的目标() 我的所有其他信息都在 JavaScript 中,所以这对我来说是一个大问题。这是我的 JavaScript: var library
这个问题在这里已经有了答案: Selecting and manipulating CSS pseudo-elements such as ::before and ::after using j
我在我的有向图中添加了一堆节点和顶点,使用设置 typedef boost::adjacency_list graph; 创建 Node有一个节点名称字符串,Edge它的分数有一个整数。我试图遍历所有
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 关闭 8 年前。 Improve
如何存储我在 NSUserDefaults 中创建的 Goal 类型的对象数组? ( swift ) 代码如下: func saveGoalList ( newGoalList : [Goal] ){
Array.prototype.indexOf 和 Date.now 已在 ES5 中引入。如果我编译存储在文件 test.ts 中的以下代码,为什么 Typescript 不能转译? Date.no
我正在阅读有关属性的内容,并了解到可以使用您的代码将它们应用于不同的目标实体 -(请参阅 Attribute Targets)。 因此,查看我项目中的 AssemblyInfo.cs 文件,我可以看到
给定一个 Makefile: all: build/a build/b build/c # need to change this to all: build/* build/a:
我有一个带有多框架目标的项目- netstandard2.0;net471 . 我想为 netframework 构建解决方案和 netstandard分别。 目前我使用这个 MSBuild 命令:
我是一名优秀的程序员,十分优秀!