Search Results

13
votes
11answers
4k views

Java: Easiest way to merge a release into one jar-file

Hi, I wonder if someone knows of a tool or script which easily merges a bunch of jar-files into one .jar. A bonus would be to easily set the main-file manifest and make it executable. …
5
votes

How do I send an SMTP Message from Java?

Here's an example for Gmail smtp: http://tovare.com/articles/learnhowtosendemailviagmail …
-2
votes

Most efficient way to increment a Map value in Java

Hi, There are a couple of approaches: Use a Bag alorithm like the sets contained in Google Collections. Create mutable container which you can use in the Ma …
1
vote

Are Java 6’s performance improvements in the JDK, JVM, or both?

Hi I have not heard about improvements in the compiler, but extensive information has been published on the runtime performance improvements. Migration guide: …
5
votes

Sorting matched arrays in Java

You could use sort() with a custom comparator if you kept a third array with the index, and sorted on that, leaving the data intact. …
1
vote

Sorting matched arrays in Java

An example illustrating using a third index array. Not sure if this is the best implementation. import java.util.*; public class Sort { private st …