applet

Is it possible to make JavaFX web applet?

≯℡__Kan透↙ 提交于 2020-01-11 04:47:12
问题 I like old Java applets. But because I really like the way JFX works, I want write some games using it (or even game making system, who knows?), but I'd like to be able to post them on my website. How would one go about doing this? 回答1: Yes, you should be able to embed JavaFX in your web page: http://docs.oracle.com/javase/8/docs/technotes/guides/deploy/deployment_toolkit.html#BABJHEJA http://docs.oracle.com/javase/8/javase-clienttechnologies.htm 回答2: Yes, you can embed a JavaFX GUI into the

Application blocked by security settings error on client' Windows8 OS

天大地大妈咪最大 提交于 2020-01-10 23:25:24
问题 We are facing this issue on our clients machine. Our project uses a third party java applet to open the files in respective softwares. On windows7 we don have any issue but we have issue on windows8 OS our project is working fine in IE10 and FF browsers. of windows8 this error is thrown only in chrome. but when we execute same third party demo site which uses this same java applet to open the files in respective softwares, that is working fine in all browsers without making any changes in

Accessing scanner at client side from a web page without applet

回眸只為那壹抹淺笑 提交于 2020-01-10 19:29:11
问题 I want to acces a scanner at client side, before I was using java applet without problem but after chrome has decided to not support java what can I do. If there's solution with JS, Jquery or other language please tell me 回答1: Atalasoft has a web scanning toolkit that should meet your needs: Atalasoft WingScan product page The product does not use browser-specific plugins and therefore works nicely in all modern browsers (IE8+, Chrome, Firefox). Architecturally, there is a small local

Is it possible to use an existing Applet within a JavaFX application (desktop)

筅森魡賤 提交于 2020-01-10 04:22:21
问题 I can't seem to find anything on this - other than it can't be embedded in a web view. I currently have an image viewing product which is accessed via an applet and controlled via JavaScript from an HTML page. I am investigating a client application using JavaFX and it would likely need to access that applet. I attempted to embed it into the WebView and that didn't work. Searching on this site stated that webview doesn't support plug in technology. This is to build an applet with Java FX -

Why does my applet get a java.security.AccessControlException: access denied (java.net.SocketPermission …), and how can I avoid it?

此生再无相见时 提交于 2020-01-09 05:22:07
问题 We are clueless about why my client is encountering a Java Security exception in Safari. Could anyone help? The exception occurs reliably in Safari on Windows. This involves a Java applet. The exception also occurs with Firefox and IE8 on Windows Vista. Here are the steps to reproduce: Open Safari on Windows Click here: http://www.cengraving.com/s/item?itemId=CH003 Click "Customize" (at bottom of screen) After the "Instant Proof" page loads, click "Add to cart." Full stack trace: java

Java Applet Panel Refresh

偶尔善良 提交于 2020-01-07 09:03:09
问题 I have a Java Applet that loads a record of a board game from a URL and displays the configuration using a series of panels laid out in a grid and nested in a JPanel. This is a small component of an overall applet with text fields and such for inputs and outputs. When a button is pressed, I want the board to show the next configuration from the record. I figured out a way to do this, but when the button is pressed, the same configuration is shown, but when I scroll up or down, or resize the

Java Applet Panel Refresh

徘徊边缘 提交于 2020-01-07 09:03:02
问题 I have a Java Applet that loads a record of a board game from a URL and displays the configuration using a series of panels laid out in a grid and nested in a JPanel. This is a small component of an overall applet with text fields and such for inputs and outputs. When a button is pressed, I want the board to show the next configuration from the record. I figured out a way to do this, but when the button is pressed, the same configuration is shown, but when I scroll up or down, or resize the

how does paint() work [closed]

拈花ヽ惹草 提交于 2020-01-07 04:41:35
问题 It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 6 years ago . Can anyone tell me exactly how does the paint() method in java applet work, in simple words? Like, when it will be called , how it will be called? Because sometimes it gets called multiple times and I do not know

Is internet access needed for CA signed applet?

断了今生、忘了曾经 提交于 2020-01-07 04:08:54
问题 We coded a java applet and signed it through a Certificate Authority, Entrust. When the applet is deployed through any browser, we can see in java console logs that a request is made to the CA: network: Connecting http://ocsp.entrust.net/ with proxy=DIRECT security: OCSP Response: GOOD However, our client has some computers in an intranet without internet connection. So, is there a way to avoid any internet request to CA server? 回答1: You will find this option from Java Control Panel >>

How can identify Applet subclasses from a Jar file?

无人久伴 提交于 2020-01-06 22:44:19
问题 I have the two following class hierarchy in jar files where the only difference is that Main in example2.jar has no package while Main in example1.jar is part of the package user . example1.jar // user/Main.java package user; import Engine.GameWindow; public class Main extends GameWindow { } // Engine/GameWindow.java package Engine; import java.applet.Applet; public abstract class GameWindow extends Applet { } example2.jar // Main.java import Engine.GameWindow; public class Main extends