0
votes
Ant Junit tests are running much slower via ant than via IDE - what to look at?
For the record, I found my problem. We have been using a code obfuscator for this project, and the string encryption portion of that obfuscator was set to "maximum". This slowed down any operatio …
0
votes
Packaging Java apps for the Windows/Linux desktop.
I have used JSmooth in the past, and still have luck with it. The UI is pretty buggy, but I only use that for building the config file once, and then I build from Ant after that.
What issu …
0
votes
Limit for URL length for “rundll32 url.dll,FileProtocolHandler”?
You could also try the Runtime.exec(String []) version, which you may have better luck with. Just take all your space seperated arguments and pass them in as seperate strings:
Runtim …
2
votes
java thread question
You can test this better by making the exact code in your first example run with threads. Sub your main method with this:
private static int currentPrime;
public static void ma …
4
votes
Open Browser window from Java program
If you can narrow it down to Java 6, you can use the desktop API:
http://java.sun. …
2
votes
How can I send output to an external/second display in Java?
It really depends on the GUI API you are planning.
For AWT, see John Meagher's post.
For SWT, you can look at Display.getMonitors() for a starting point.
…
0
votes
Jar security
We currently use an obfuscator, which provides reasonable protection against attack. The one we are using right now provides a stack trace tool which will de-obfuscate them when they come out the …
0
votes
Java memory consumption, “top” and HP-Ux
You might also want to look at the problem you are trying to solve... I don't imagine there are many problems that eat 16GB of memory that aren't due for a good round of optimization.
Are …
1
vote
How to set the working directory for a <junit> task to something other than the basedir?
Have you tried:
<junit fork="true" printsummary="yes" dir="workingdir">
…
0
votes
SWT Link flickers with gradient background
Have you tried passing SWT.NO_BACKGROUND to your Link widget? It might get a little strange... and you may have to do a little more work to get the gui drawing properly, but that would be my first …
2
votes
Programmatically generate an Eclipse project
You should be able to accomplish this by writing a small Eclipse plugin. You could even extend it out to being a "headless" RCP app, and pass in the command line arguments you need.
The ba …
1
vote
Java - change focus on key press
final Text textBox = new Text(shell, SWT.NONE);
textBox.addKeyListener(new KeyAdapter() {
public void keyPressed(KeyEvent arg0) {
if (textBox.getText().equals("") == false) {
textBox …
0
votes
msvcr71.dll file missing on Win Vista when trying to run my java swing application
have you tried executing using "java -jar java.jar"? Does it produce the same result?
…
1
vote
Request admin privileges for Java app on Windows Vista
I'm not sure you can do it programmatically. If you have an installer for your app, you can add the registry key to force run as admin:
Path:
HKEY_CURRENT_USER\Software\Mic …
11
votes
Java: Out with the Old, In with the New …
Q1: Well, the most obvious situations are in the generics / type specific collections. The other one that immediately springs to mind is the improved for loop, which I feel is a lot cleaner lookin …
