Tagged Questions
0
votes
1answer
173 views
Non-headless mode: Apple AWT Java VM was loaded on first thread
I'm developing a maven-built JavaFX 2 application in eclipse.
Everything is running fine on Windows, but Mac OSX is causing problems. I have to include the following line to prevent the application ...
3
votes
1answer
111 views
Java: Run Applet on headless server
My question is pretty simple. Let's say that this is my entire codebase, and I cannot change it:
import java.awt.*;
public class Example1b extends java.applet.Applet
{
public static void ...
0
votes
1answer
2k views
Exception: java.awt.HeadlessException in jsp
I am basically drawing a 3d chart in swings.Its working fine as standalone java application.
I integrated it with jsp,but it is throwing headless exception.I am using jetty webserver.
here is the ...
3
votes
1answer
301 views
Wicket CaptchaImageResource creating zero-length images on Linux server
I'm using Wicket's CaptchaImageResource to protect a submission form against bots. It works fine in my test environment (a Mac) using the Jetty server, as well as when deployed to a local Tomcat ...
1
vote
1answer
3k views
using java.awt library in linux X11 issue
I am trying to create a video by combining a set of images available online using Xuggle. I implemented it as a service using JSP and Java. I'm using the tomcat server. When I deploy it in my local ...
3
votes
1answer
2k views
Java headless bicubic image resize
I need to perform java image crop and resize without an X server.
I tried several methods.
the first method below works, but outputs a fairly ugly resized image (probably using nearest neighbor ...
2
votes
2answers
3k views
java.awt.HeadlessException thrown from HeadlessGraphicsEnvironment.getDefaultScreenDevice
I need to do some image processing on a java server (Debian with java version "1.6.0_12"),
and I am receiving java.awt.HeadlessException from my code:
java.awt.HeadlessException
at ...
12
votes
5answers
16k views
Setting java.awt.headless=true programmatically
I'm trying to set java.awt.headless=true during the application startup but it appears like I'm too late and the non-headless mode is already started:
static {
...
1
vote
2answers
643 views
Java - Differences in AWT from 1.4 to 1.5 ( working on Unix and Windows )
This is with reference to my question: java.awt.HeadlessException Applets not displayed.
There is a next question that has come up from the Sys Admins. They are asking -
"Why does java1.5 now ...