3
votes
1answer
35 views

Good location for log files (windows) [closed]

I am curious about where would be a good location to store log files on windows. Let's say I have a webstart, or an applet application, therefore there is really no place where they are launched from ...
1
vote
2answers
12 views

Why am I receiving an Abstract Class error when I press the Applet button?

I am trying to create a button that once pressed erases the old screen and draws something new. I plan on drawing a room then adding a button onto a door. When the button on the door is pressed, it ...
0
votes
0answers
19 views

My Applet won't load at all [closed]

I'm trying to program a game using a Java applet where rectangles will fall and you and your character have to avoid them. But for some reason the applet fails to load at all. All I get is a blank ...
0
votes
1answer
29 views

Create JavaApplet without ask for security warning

I only have one class in my .jar file and don't need user to click for security warning. How can I display it from popping up?
0
votes
2answers
28 views

How to load an image in Java using toolkit and new URL

I need to use a JPEG image in my Java applet. In my applet class, I define the image name and create an object to ImageBuffer class. String iname= "image1.jpg"; b = new ImageBuffer(iname,this); In ...
0
votes
0answers
24 views

Java applet using JavaFx

I'm developing an applet. I want to use JavaFx to create the controls. Currently, I'm using An JFXPanel. Here is the code: private JFXPanel jfxPanel; private Canvas canvas; private Scene scene; ...
0
votes
1answer
10 views

requesting a .java.policy file from URL security risk

My client wants to use an applet to do drag and drop file transfers from the browser. We have everything working for the most part, but the .java.policy file granting the applet file system access ...
0
votes
1answer
30 views

Java Applet is not running in a browser

I am trying to run my applet in a browser, chrome/IE but I get the following message: Your security settings have blocked a local application from running Due to Oracle, changing security level in ...
0
votes
1answer
18 views

repaint not working when button is pushed

I am trying to get my code to work such that when you push the "Go!" button, it either draws a hand of cards or shuffles the deck, depending on the checkbox selected. I think I can figure that out ...
0
votes
0answers
39 views

Secure Java to MySQL database methods for sandbox applets

I'm making a java applet that will be embedded in a browser unsigned. I've successfully allowed my applet to read from a mysql database thanks to DOM xml parsing. How I did this was using php to get ...
0
votes
1answer
31 views

Do java applets have to be signed with trusted cert authority with new v7 update 21?

I would require some help with fixing my problem. As posted in one of my previous questions i have a problem with java applet. Java viewer not working after JRE 1.7.0.21 update I tried several ...
0
votes
0answers
31 views

Error when running applet with Slick2D

I have been trying to get a slick application to work on a website for awhile now, and I have the HTML code correct, I know that for sure, however I am getting an error from the applet saying this: ...
0
votes
1answer
26 views

Cannot Find getWindow(Applet) in netscape.javascript.JSObject

I am trying to call JavaScript functions from a JApplet. I've searched through tutorials and they say that I need to import and use netscape.javascript.* from my \jre\lib\plugin.jar I did import ...
0
votes
1answer
40 views

A main menu for class A extends Applet

Hi i have made a game in java that extends applet. The game works perfectly fine but one of the requirements of this assignment is that there should be a menu. For example: As the program is run a ...
-2
votes
2answers
51 views

NoClassDefFoundError while embedding applet on HTML

I'm trying some easy things with jsp and applets. It's just some really easy applet package pack1; import java.applet.Applet; import java.awt.Graphics; public class test2 extends Applet { ...
0
votes
2answers
47 views

I already know the basics of applets, now what? [closed]

I have experience in programming or scripting in these languages: Lua PHP GML Using what I already know about programming, I decided to learn how to make Java Applets for my website. Now, since I ...
0
votes
1answer
31 views

Retrieve Values from multiple JFrame to a single JFrame

I have 5 JFrames in my application and I want the values from all 5 JFrames to be sent to a single JFrame. And it is a process where I have to go one frame to another and the value entered previously ...
0
votes
1answer
22 views

Moving method outputs from a java class to HTML

I'm programming in Java and have a simple hello-world type class which can provide outputs to the console quite happily. What I would like to do is transfer the outputs of this, or a similar class, ...
1
vote
2answers
39 views

Creating a second applet(window) in processing

Hello guys i am trying to do a code where i can create a second applet in processing by passing on a sensible area. the code works fine except for 1 thing. when it passes over the sensible area it ...
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 ...
-1
votes
0answers
16 views

tool or framework to quickly write string manipulation animation [closed]

I m doing string manipulation question from coding bat , it is java code. Return a version of the given string, where for every star (*) in the string the star and the chars immediately to its ...
0
votes
2answers
18 views

Call javascript function in applet declaration

I created a small applet for my sister's blog that flashes colors randomly. She wants to set it as her background for her webpage. I've already figured out how to find the size of a web page and all ...
0
votes
3answers
33 views

AccessControlException: access denied - FilePermission

I am using JRE7. I have signed the jar file using jarsigner. But still I get the exception java.security.AccessControlException: access denied ("java.io.FilePermission" "C:\Program ...
-1
votes
1answer
45 views

Execute Java application in HTML

I have a closed source Java application MDSJ.jar. I can execute it in command-line with something like: java -classpath mdsj.jar mdsj.MDSJ -t2000 -s4 -d2 -q in.txt out.txt Is there any way I could ...
-1
votes
1answer
38 views

Signed applet jar still fails for some commands

I used this code to insert data to my restful web service using restful client application as follow NewJerseyClient client = new NewJerseyClient(); Prints p = new Prints(); ...
2
votes
1answer
32 views

Allow either one name or another to be selected when a person uses the code

<param name="userName" value ="Name1", "Name2", "Name3, "Name4";> I am attempting force the user one of these names, name1, name2, or name3, whenever they uses the whole thing. It only seems ...
0
votes
0answers
24 views

Keytool.exe and jarsigner.exe issues

I have finished a small game in Java and I want to upload it online. I have an HTML file that loads it properly, as well as the code being fine. However, I can't use the function File file = new ...
2
votes
0answers
68 views
+500

java applet: jocl operations stop java3d

Jocl(opencl wrapper) kernel running makes java3d output disabled. When opencl finishes, java3d continus working. How can I let Opencl(jocl) and opengl(java3d) work together? I need some kind of ...
0
votes
1answer
21 views

How can I put some code that makes a sound in an applet?

I'm making a clock applet, and I'm almost done, but there's still one thing I need to do. I want to make the clock "tick" every time the second hand moves, but I can't figure out where to put the code ...
0
votes
1answer
46 views

Is there any chance of this code printing null?

String readwidget(int a, int b){ WidgetChild readwidget = Widgets.get(a,b); if(readwidget.getText() != null){ Task.sleep(10); ...
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 ...
0
votes
0answers
50 views

JavaFx application in web browser : Jar working but JNLP / HTML doesn't

I have a javafx application, i am using netbeans as IDE. If i use the configuration stand alone the program is working without any trouble. But if i choose Run in browser i have a Runtime Error and ...
0
votes
0answers
26 views

Applet - Both signed and unsigned code warning message only with 1.6.0_45

I'm working with legacy code where the login is performed through an applet (as I've commented it is legacy code ;D). We've been working with several JRE versions (1.6.0_29, 30 and 43) and all have ...
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 ...
-4
votes
0answers
26 views

KeyEvent Parameters [closed]

Okay so I have this code: public static void main(String[] args) { keyPressed( ****HERE**** ); } public static void keyPressed(KeyEvent e) { System.out.println("Press ...
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
0answers
26 views

Why won't my avatar move.

This is the code. The box will not move even if I click a directional key. So, I want to know what's going on. Can you help me? Thanks in advance! import java.awt.*; import javax.swing.*; ...
0
votes
1answer
54 views

How to call applet from web to read excel file and insert data to oracle database?

I wrote a java class to read excel file and dump the data to Oracle Database. It needs to reference apache poi libraries( 8 jar files.) The program works fine in command line. Now I want to call ...
0
votes
0answers
29 views

how can we bypass the “do you want to run this application?” warning message for a java applet [duplicate]

We have created an online board game. But now, not all users want to accept this warning. How can we bypass this warning box? Is there any way for this? For example, if we use a signed/trusted ...
-3
votes
0answers
18 views

Needing to generate tiles for top down, tiles not drawing in paint [closed]

import java.awt.*; import java.applet.*; import java.util.*; import java.awt.Image; import java.awt.Graphics; import java.io.*; import javax.imageio.*; public class Sandbox extends Applet { ...
0
votes
0answers
24 views

Applets, HTTPS and Windows Domain

I'm experiencing a trouble with Applet authentication over HTTPS. It seems that when I try to log in using Windows authentication account, like domain \ username, applet will remove the domain and ...
0
votes
0answers
50 views

PdfStamper in Java Applet

I use PdfStamper in Java applet to sign pdf files. The problem is that applet every time suspends when reach line with pdfStamper.close(); I think that my problem is related to some java applet policy ...
1
vote
0answers
31 views

How to dynamically extend PickCanvas object for MouseListener click event in a Java Applet (using Java3D)?

I am developing a Java applet using Java3D. It starts up with a BranchGroup object (containing a set of points) which is added to a Locale object. A PickCanvas is created starting from the Locale and ...
1
vote
1answer
29 views

Why this applet doesn't load on IE?

I am having trouble with an applet that doesn't loads on IE but does on any other browser. Here is the problem I see: Do you have any idea of how I can fix that problem? If you want to test, you ...
0
votes
1answer
36 views

System.load() never happens

I am using System.load() on a self signed Java applet, the older version of the dll loads fine, but my new version (even though the dll builds fine) does not load, does not throw any exceptions, just ...
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
22 views

Simple Applet Game Bug

I'm having trouble with my applet. It's purpose is to create a game where you can move a block at the bottom of the screen to fit through holes in blocks that are falling down from up above. I've ...
-1
votes
1answer
33 views

Stop flickering/repainting

So I have an java.applet.Applet that is embedded into a JFrame. The applet uses a java.awt.Canvas for drawing. The code would be quite a lot for me to post and there is no "Small" examples but here is ...
0
votes
4answers
39 views

Java applet calling WCF Service fails with noclassdef exception at runtime

I have a java applet which uses a proxy service to a WCF Service to display data. The applet compiles and runs perfectly in Eclipse but when I build and export a Jar file then run it in a html page ...
-1
votes
1answer
36 views

Getting the error “ Cannot find symbol ” on getdocumentBase()

Despite I import the applet library, NetBeans cannot recognize and use getDocumentBase() in my code, I have my html file within my project and all other required files as well, here is a part of my ...

1 2 3 4 5 74