1
vote
How do I get my Java application to shutdown nicely in windows?
The previously mentioned JNI approach will likely work.
You can use JNA which is basically a wrapper around JNI to make it easier to use. An added bonus is that it (in my opinion at least) …
1
vote
How do I set the HttpOnly flag on JSF/Richfaces
There may be something that allows you to do this in your servlet engine. This is part of the Servlet 3.0 spec which is yet to be released.
…
3
votes
Best server-side framework for heavy AJAX Java application
If you're starting from scratch. I'd have to say Google Web Toolkit. I have to say it is incredibly powerful. You get keep using m …
2
votes
Java Compilation - Is there a way to tell the compiler to ignore parts of my code?
You can probably refactor your code so that conditional compile really isn't needed, just conditional classloading. Something like this:
public interface Opener{
public void open( …
0
votes
Is there a platform independent way (Java?) to read an audio CD’s TOC?
You can use the Java Sound API. I believe this is part of java 5. This may allow you to do what you want to do.
htt …
3
votes
Code compiling in eclipse but not on command line
What you have seems to compile.
If possible, I would suggest trying to embed the resource in the Jar and using
ClassLoader.getResourceAsStream().
…
3
votes
Java: Easiest way to merge a release into one jar-file
You can use JarJar which will use package shadowing to make sure your jar doesn't conflict with others.
…
1
vote
Java garbage collection on VMWare servers
In general, the garbage collector will only run a full GC when it really needs to. The reason is that it takes a lot of time. It will try to do more smaller GCs that take a lot less time. Fo the …
2
votes
A Java API to generate Java source files
If you REALLY need the source, I don't know of anything that generates source. You can however use ASM or …
8
votes
What’s a good compression library for Java?
You can use Deflater/Inflater which is built into the JDK. There are also GZIPInputStream and GZIPO …
0
votes
How to use JVLC (Java bindings for VLC)?
You can get that exception if the dll you are trying to load requires other dlls that are not available. Sorry I can't be of more specific help, but it is something to check out. You can use …
3
votes
Best server Performance Monitoring Tool for Java Servers
I am a big fan of VisualVM. You will have to expose MBeans via JMX yourself if you want informaton specific to your app. Tomcat(and oth …
0
votes
What is the minimum requirement to create frames in java?
Frame f = new Frame();
f.setVisible(true);
Would be the minimal code, but you might look into Swi …
-1
votes
Does java have a using clause?
No there isn't.
You can
public void func(){
{
ArrayList l = new ArrayList();
}
System.out.println("Hello");
}
This gives you the limited scop …
0
votes
Java 2D Drawing Optimal Performance
There are couple of things you will need to keep in mind
1) is refreshing this link shows how to …
