0
votes
0answers
10 views

JApplet reading specific word from text file

I've created GUI for JApplet with several JButtons and JTextFields. Now I have this text file with words/terms and I want them to show on a button when it's clicked and text field. Problem is specific ...
0
votes
0answers
22 views

Getting Drag/Move event on Applet window

I have an applet inside the browser window and a dialog on top of the applet. My requirement is that I have to move the JDialog as and when the applet window is moved. How can I track the event for ...
2
votes
1answer
61 views

How do I use javax.swing components in an application?

Disclaimer: I am very new to Java, but I've been building .NET applications for 13 years. I'm trying to build this Java application that does some basic calculations for tutoring. It's honestly not ...
0
votes
1answer
30 views

JApplet error that I can't seem to fix

I am getting an annoying error for my Java applet. I am new to applets so please note that I am not that experienced with this at all. I have an HTML file labelled as index.html with the following ...
0
votes
2answers
18 views

Can't get JApplet to play music mp3 file

I am trying to get music to play in the background on a JApplet. The applet itself works just fine but I dont hear any music. I was wondering if it had to due with the file being mp3. ...
0
votes
1answer
40 views

Why does applet initiate in default size before resizing to my specified size?

Essentially the question says it all. I have a program where I initiate the canvas (JApplet) and set its size to not the default values. I wait for the timer to end and then it resizes. I don't want a ...
-1
votes
2answers
32 views

JApplet will start but not initialize

First time poster and obvious n00b java student. I have been working on this forever, scouring the internet for the last two days and anything I try yields no results. This was originally a program ...
0
votes
1answer
34 views

Is there a way to detect when an applet has been closed?

So I have a game in a JApplet, and I make a new thread that loops the background music continuously. However, when I close the window the tab that the applet is in, the music keeps playing. It only ...
1
vote
1answer
64 views

Invocation target exception

Here is code of my program import javax.swing.*; import java.awt.*; import java.awt.event.*; class JAdapterOkno extends WindowAdapter { public void windowClosing(WindowEvent e) { ...
0
votes
0answers
73 views

Applet does not cache jar files

I'm having issues identifying why a few heavy .jar files are not being cached at the client side. The applet runs fine, but it lazy-downloads the heavy jar libs on every run (specifically ...
1
vote
2answers
62 views

KeyBindings not working properly in JApplet

The class is used to start a game that I made when you press space and then restart the space when you press space in the game over screen. It works the first time when I press space and starts the ...
0
votes
0answers
88 views

Multiple instances of Applet show/hide trouble

I'm trying to use a Java Applet with AngularJS for some drag/drop functionality for my client's system. The reason for the Applet is they need to drop files from their file system into the browser, ...
0
votes
1answer
120 views

using Graphic g of Paint() outside in java

Hey I want to create a applet "whiteboard" for doing rough work while browsing. It includes features like drawing,doing rough,writing. As the user click and drag the mouse the path is drawn using ...
1
vote
0answers
27 views

Java applet authenticity issue

I implemented an applet in java to authenticate users at my website by the usage of MIFARE cards and everything is working good. However I am concerned about the applet's authenticity, in other words, ...
1
vote
2answers
87 views

How to get the NumPad layout

I need the layout for numpad on the keyboard. I got most of it, the only problem I am having is that the "enter" button is supposed to be till the bottom. But when I use the Panel p4 and I set it to ...
0
votes
1answer
68 views

How to add different actionlisteners to the same object

How do I add different actionlisteners to the p1 objects. I want the program to be able to set the textbar to the appropriate number when pressed with the appropriate button. Since they are not ...
1
vote
0answers
48 views

Acessing java cache from a java applet

I would like to know if is possible to access the cache from java directly from an applet in a dynamic way, in other word the applet must work in multiple OS. All of this because i want to load a ...
0
votes
3answers
276 views

Launching another Applet from another Applet

I have made a Loader Applet which greets the user and when user clicks the button displayed on that Applet it then launches the main applet and the Loader Applet is destroyed. But on clicking Another ...
0
votes
0answers
30 views

JCheckbox weird graphics rendering

I'm having a problem with a program I'm making: I'm using JCheckbox instances and Graphics2D but it seems that the JCheckbox is causing a weird graphical glitch: For those who don't see the image, ...
0
votes
1answer
127 views

Why won't drjava allow me to create a jar file?

I'm making a JApplet and need to make a JAR file to connect to a .htm file with the applet tag. The simple solution I could think of was to use the tool in drjava that says "Create Jar File From ...
2
votes
1answer
154 views

Applet fails to reload after page refresh or after navigating to same page, getting classNotFoundException second time (after page refresh)

Applet loads and run succesfully for first time but when we goes off the page and again try to navigate to same page getting class not found Exception. Using jnlp exception: JNLP file error: ...
0
votes
1answer
205 views

Java Applet with jar embed in HTML security issue

I embed an applet to a HTML page. The applet also uses the MySQL jar file. It works just fine without the MySQL jar file. When executing it from the local webserver or hosted webserver it gives the ...
1
vote
1answer
273 views

Unable to load Xuggle library: java.lang.UnsatisfiedLinkError

I'm designing this Java web applet to stream video via RTSP from a video server. In order to render this video, the Xuggler 5.4 library (xuggle-xuggler.jar) will be used. Currently, video is rendered ...
0
votes
1answer
52 views

Set Icon to JApplet titlebar

I am using JApplet embedded in HTML. How can I set an icon or logo to the title bar of JApplet, just like we set icons to JFrame using setIconImage?
-1
votes
1answer
64 views

Java applet with external jar cannot display whole apple application

I use ANTLR make a small java applet. I can run it from eclipse without any problem, but once i put it on the web-page. Applet cannot display any stuff. such as button never is displayed until I use ...
0
votes
2answers
122 views

Check javascript function is defined from java applet

I am developing a Java applet where I call a javascript function: boolean isAllowed = (boolean) win.eval("isPointMarkCreationAllowed()"); and I would like to check if that function exists, like we ...
0
votes
0answers
151 views

Japplet gives Class Not Found Exception

I am trying to make a simple JApplet work using Eclipse Helios, but I am always getting ClassNotFoundException: My Simplest Applet Code: package com; import javax.swing.*; import java.awt.*; ...
0
votes
1answer
74 views

Can't fix NoClassDefFound error in Java

I build project in eclipse - swing applet and now I'm trying to run it in a browser. I have 3 packages, let's say they are called: "pkgApplet", "pkgFirst", "pkgSecond" with .class files. In pkgApplet ...
-4
votes
1answer
121 views

Pinball in Java

actually I have a code which I think it's complete , but i don't know how to run it on Eclipse... that's a pinball game on java and i want to practice from this code : ...
1
vote
1answer
142 views

Java Applet errors on Web Hosting site

I am having problems trying to run my applet file when I upload it on my website. It keeps giving me errors, but works perfectly fine on my computer. I am using NetBeans to create my Applets and I ...
0
votes
0answers
38 views

relaunching a java applet

I have built an applet which calculates things, think of it like a calculator. Now just like a calculator my applet has a clear button. A clear button is supposed to set all the variables to their ...
2
votes
1answer
45 views

JApplet not running properly in eclipse

I wrote a pretty basic applet program in eclipse: public class SwingAppletDemo extends JApplet { private static final long serialVersionUID = -1935096480915162747L; JLabel jl; public void init() { ...
1
vote
1answer
90 views

Saving state of Java applet

I have a rather complex unsigned Java applet. It (among other things) contains a tree that user can browse. I'm planning to bundle that applet into existing web page, but applet should somehow ...
1
vote
1answer
53 views

Instanciate an PApplet from a java application

I'm writing a java application in which I want to embed a Processing sketch through the inclusion of the the Processing libraries. I have already written the Processing sketch, but now I want to make ...
0
votes
0answers
43 views

Possible to make a iFrame in a Java Applet?

Is it possible to make a iFrame in java? Right now, i am using iframe outside the applet, but would be awesome if the java could read the contents and have their own iFrame? I have searched on ...
0
votes
2answers
291 views

How does a browser deal with applets?

I wonder what happens when my browser goes to a web-page like this. When I try to google for "browser" and "applet" mostly it finds how to add applet to browser and troubleshooting, but not how it ...
1
vote
3answers
129 views

How to set maximum available size for JApplet?

I am porting my desktop Swing application to an applet. The following code works perfect for JFrame entity to set a maximum available window size, considering a task bar. GraphicsEnvironment env = ...
0
votes
1answer
166 views

When is Applet.stop() called?

I experiment with my applet using Eclipse and its Applet Viewer. The Applet Viewer appears on the top of Eclipse and during Applet execution I click on Eclipse icon to maximize it from task bar. Then ...
0
votes
1answer
142 views

Multiple jAppletForm in a Java applet

I've created a new Java project without main class in NetBeans and then I've added a jApplet Form (let's call it MainWindow.java) to my project package. After that, I've added few other jApplet Forms ...
0
votes
3answers
129 views

how to suspend Applet in browser when tab is unselected

I'm making my first Applet. I have a JPanel which creates a Swing GUI and performs CPU intensive tasks (repainting a Component 60Hz). My Applet displays this JPanel on event dispatching thread. ...
6
votes
1answer
177 views

Java applet not working in Azure

I built a simple Java applet which works perfectly locally. When I Upload my website to Azure (as a Cloud Service), it shows a gray box: I tried Win XP, Win 7, JRE 6, JRE 7 and different browsers. ...
2
votes
2answers
135 views

Java Applet 411 Content Length

I am new to Java. I wrote an applet with a gui that sends results (int w and int p) to a server, and I get the "411 Length Required" error. What am I doing wrong? How do you set a Content-Length? ...
0
votes
1answer
437 views

Display multiple images in a single applet

I have to build a small Java applet for a project. I have previously never used applets. Hence I don't know much about the various inbuilt functions available. The layout of this applet is as below: ...
1
vote
4answers
3k views

java.security.AccessControlException: access denied (“java.net.SocketPermission” “smtp.gmail.com” “resolve”)

I am using GlassFish Server 3.1 and the Java mail Api 1.4.5. Scenario: I have an applet, that when clicked it sends an email message. Send the mail works perfectly on Netbeans AppletViewer, but it ...
2
votes
1answer
84 views

How to get two applets to share fields

I have two applets. FirstApplet applet is in the main HTML page. The main page uses javascript window.open(...) to open a new page where the SecondApplet applet is embedded. Below is how both ...
0
votes
1answer
112 views

Java Applet get file outside JAR

I need to get configuration file for my java applet (jes it's japplet (located on remote apache server):)) from outside JAR (file will change or be generated dynamically). Is it possible to do this ...
0
votes
1answer
320 views

Java Applet cannot parse Json

I'm developing a web server in Django, and in a page, I embed a Java Applet. I have to pass to this applet a JSon array at the moment of instantiation. NO problems at all, I've tested it in Eclipse ...
0
votes
0answers
28 views

Is there a way to remove an the applet viewer in java

I am new to building GUI's for java I want to remove the appletViewer that comes up when you run a applet. It is not being used due to the fact that using a JFrame to view my GUI.
1
vote
0answers
120 views

MenuItem actionPerformed works in AppletViewer but not in Browser

I am converting a medium-size (13892 LOC) Java Swing application into an applet. So far, I've got the applet running and showing both in the Applet Viewer (via Eclipse) and showing in the browser ...
0
votes
0answers
94 views

Converting a java application to an applet

So I created a calculator program with a simple GUI. I'm trying to convert this application into a applet so I can put it on my website. My Calculator class works as expected when it is run ...

1 2 3