User James Van Huis - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T09:29:20Zhttp://stackoverflow.com/feeds/user/31828http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799149/open-word-document-with-cursor-disabled/1799235#17992350Answer by James Van Huis for Open Word document with cursor disabledJames Van Huis2009-11-25T19:02:36Z2009-11-25T19:02:36Z<p>Tools > Options > "Security" Tab</p>
<p>Select "Protect Document..." and follow the prompts. You can restrict the document down to completely read only.</p>
http://stackoverflow.com/questions/1131084/implementing-a-log-viewer-gui-with-c-or-java/1143659#11436590Answer by James Van Huis for Implementing a log viewer GUI with C# (or java)James Van Huis2009-07-17T14:34:35Z2009-07-17T14:34:35Z<p>I've implemented something similar using a <a href="http://help.eclipse.org/stable/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/jface/viewers/TableViewer.html" rel="nofollow">JFace TableViewer</a>. <a href="http://www.vogella.de/articles/EclipseJFaceTable/article.html" rel="nofollow">This article</a> should give you a decent starting point.</p>
http://stackoverflow.com/questions/1128387/nullobject-for-file-in-java/1128435#11284350Answer by James Van Huis for nullobject for File in JavaJames Van Huis2009-07-14T22:31:38Z2009-07-14T22:31:38Z<p>The null object pattern was designed around interfaces, not concrete objects.</p>
<p>To get around this, you can create a new interface which contains the methods you are using from <code>File</code>, and then create a concrete implementation which just delegates to a <code>File</code> held inside. Then, you can create your null implementation, which will stub out the calls.</p>
<p>Of course, this seems like a bit of overkill for removing one null check.</p>
http://stackoverflow.com/questions/1070627/aligning-text-and-image-in-an-swt-button/1070755#10707550Answer by James Van Huis for Aligning text and image in an SWT Button?James Van Huis2009-07-01T18:57:24Z2009-07-01T18:57:24Z<p>This appears to be an SWT limitation (at least in Windows).</p>
<p>Prior to 3.2, setting both an Image and Text on a button was not possible. Reading through that <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=33967" rel="nofollow">bug report</a>, there was some discussion given to alignment and relative positioning of the image to the text. It appears that the final implementation simply forced a center alignment, and placed the image to the left of the text.</p>
<p>There was an enhancement request to fix this limitation, <a href="https://bugs.eclipse.org/bugs/show%5Fbug.cgi?id=172850" rel="nofollow">but it was closed as WONTFIX for 3.3</a>.</p>
http://stackoverflow.com/questions/1060659/strange-classpath-noclassdeffounderror-errors/1060693#1060693-1Answer by James Van Huis for Strange Classpath, .NoClassDefFoundError errorsJames Van Huis2009-06-29T21:32:35Z2009-06-29T21:42:16Z<p>Not a solution specifically, but it sounds like you are duplicating a lot of functionality that is already present in <a href="http://one-jar.sourceforge.net/" rel="nofollow">One-Jar</a>. </p>
<p>You can bundle your code, along with all of your auxiliary jars, into a single jar file. The One-Jar classloader will work it out at runtime. It has saved me from having to write custom classloader code several times.</p>
http://stackoverflow.com/questions/1060479/determine-whether-daylight-savings-time-dst-is-active-in-java-for-a-specified-d/1060558#10605580Answer by James Van Huis for Determine Whether Daylight Savings Time (DST) is Active in Java for a Specified DateJames Van Huis2009-06-29T21:06:48Z2009-06-29T21:22:32Z<p><a href="http://joda-time.sourceforge.net/" rel="nofollow">Joda Time</a> contains handling methods which will calculate the offsets for you. See <a href="http://joda-time.sourceforge.net/api-release/org/joda/time/DateTimeZone.html" rel="nofollow">DateTimeZone.convertLocalToUTC(...)</a></p>
<p>To supplement this, you will need to look up the current time zone with your latitude/longitude info. <a href="http://www.geonames.org/export/client-libraries.html" rel="nofollow">GeoNames</a> provides a java client for its web service, as well as a simple web-request framework (i.e. <a href="http://ws.geonames.org/timezone?lat=47.01&lng=10.2" rel="nofollow">http://ws.geonames.org/timezone?lat=47.01&lng=10.2</a>)</p>
http://stackoverflow.com/questions/1045362/jface-question-how-do-i-select-all-items-in-a-listselectiondialog/1045387#10453873Answer by James Van Huis for JFace question: How do I select all items in a ListSelectionDialog?James Van Huis2009-06-25T18:07:26Z2009-06-25T18:07:26Z<pre><code>List elementsToSelect = ...
dialog.setInitialElementSelections(elementsToSelect);
</code></pre>
http://stackoverflow.com/questions/1045296/error-trying-to-use-import-jxl-statements/1045324#10453240Answer by James Van Huis for Error trying to use import.jxl... statements.James Van Huis2009-06-25T17:57:43Z2009-06-25T17:57:43Z<p>Sounds like you need to add the jxl jar file to your build path.</p>
http://stackoverflow.com/questions/970039/09-is-not-recognized-where-as-9-is-recognized/970070#97007015Answer by James Van Huis for 09 is not recognized where as 9 is recognizedJames Van Huis2009-06-09T13:24:59Z2009-06-09T13:58:25Z<p>In java, if you are defining an integer, a leading '0' will denote that you are defining a number in octal</p>
<pre><code>int i = 07; //integer defined as octal
int i = 7; // integer defined as base 10
int i = 0x07; // integer defined as hex
</code></pre>
http://stackoverflow.com/questions/952098/re-implement-3rd-party-tcp-java-client/952255#9522550Answer by James Van Huis for Re-Implement 3rd party TCP Java clientJames Van Huis2009-06-04T18:20:18Z2009-06-04T18:20:18Z<p>You could attempt to <a href="http://stackoverflow.com/questions/272535/how-do-i-decompile-java-class-files">decompile</a> the library. That should give you all of the low-level info that you need.</p>
http://stackoverflow.com/questions/936684/getting-the-class-name-from-a-static-method-in-java/936715#9367150Answer by James Van Huis for Getting the class name from a static method in JavaJames Van Huis2009-06-01T20:47:50Z2009-06-01T20:47:50Z<p>If you want the entire package name with it, call:</p>
<pre><code>String name = MyClass.class.getCanonicalName();
</code></pre>
<p>If you only want the last element, call:</p>
<pre><code>String name = MyClass.class.getSimpleName();
</code></pre>
http://stackoverflow.com/questions/922052/testing-whether-a-font-is-monospaced-in-java/922631#9226311Answer by James Van Huis for Testing whether a Font is monospaced in JavaJames Van Huis2009-05-28T19:04:33Z2009-05-28T19:04:33Z<p>Probably not applicable for your case, but if you simply want to set the font to a monospaced font, use the logical font name:</p>
<pre><code>Font mono = new Font("Monospaced", Font.PLAIN, 12);
</code></pre>
<p>This will be a guaranteed monospaced font on your system. </p>
http://stackoverflow.com/questions/912623/how-can-i-speed-up-java-datagramsocket-performance/912773#9127732Answer by James Van Huis for How can I speed up Java DatagramSocket performance?James Van Huis2009-05-26T21:09:46Z2009-05-26T21:18:12Z<p>You can use the Timer class to schedule an event.</p>
<pre><code> Timer timer = new Timer();
TimerTask task = new TimerTask() {
public void run() {
//send packet here
}};
timer.scheduleAtFixedRate(task, 0, 60);
</code></pre>
<p>This will create a recurring event every 60ms to execute the "run" command. All things remaining equal, the packet should hit the wire every 60ms (although, the first packet will be delayed by some amount, and garbage collection/other tasks/etc may slightly delay this number).</p>
http://stackoverflow.com/questions/822150/modify-a-txt-file-in-java/822551#8225510Answer by James Van Huis for Modify a .txt file in JavaJames Van Huis2009-05-04T23:05:04Z2009-05-05T14:28:54Z<p>What kind of data is it? Do you control the format of the file?</p>
<p>If the file contains name/value pairs (or similar), you could have some luck with <a href="http://java.sun.com/j2se/1.3/docs/api/java/util/Properties.html" rel="nofollow">Properties</a>, or perhaps cobbling together something using a flat file JDBC driver.</p>
<p>Alternatively, have you considered not writing the data so often? Operating on an in-memory copy of your file should be relatively trivial. If there are no external resources which need real time updates of the file, then there is no need to go to disk every time you want to make a modification. You can run a scheduled task to write periodic updates to disk if you are worried about data backup.</p>
http://stackoverflow.com/questions/820261/obfuscating-jar-files-with-other-jar-files-embedded/820436#8204360Answer by James Van Huis for Obfuscating Jar files with other Jar files embeddedJames Van Huis2009-05-04T14:50:18Z2009-05-04T14:59:14Z<p>Presumably, you have some sort of build script in place to compile your source, package it with the other jars (One-Jar/Fat Jar/etc.), and build your jar.</p>
<p>You should be able to insert the obfuscation task between the compilation and packaging.</p>
<p>If your obfuscation tool of choice will only take a jar input, you should be able to compile, jar, and obfuscate your code independently. After that, have your script unjar the obfuscated file and do your packaging.</p>
http://stackoverflow.com/questions/768387/how-do-i-play-a-wave-file-sent-from-server/768405#7684050Answer by James Van Huis for How do I play a wave file sent from server?James Van Huis2009-04-20T14:08:31Z2009-04-20T14:08:31Z<p><a href="http://stackoverflow.com/questions/26305/how-can-i-play-sound-in-java">See Here</a></p>
http://stackoverflow.com/questions/704486/swt-jface-remove-widgets/761663#7616630Answer by James Van Huis for SWT/JFace: remove widgetsJames Van Huis2009-04-17T18:35:10Z2009-04-17T18:35:10Z<p>Another option is to use a <a href="http://www.java2s.com/Tutorial/Java/0280%5F%5FSWT/UseaStackLayouttoswitchbetweenComposites.htm" rel="nofollow">StackLayout</a> to switch between underlying controls. This prevents you from running into a "widget is disposed" error.</p>
http://stackoverflow.com/questions/658407/static-methods/658434#6584340Answer by James Van Huis for Static methodsJames Van Huis2009-03-18T14:19:53Z2009-03-18T14:19:53Z<p>In this case, I would probably make a couple of static methods. I would assume that the calc function does not depend upon other resources to calculate the values, and it is generally segregated from the rest of the code.</p>
<p>In general, however, I tend to shy away from doing overly complicated things in static methods. If you were unit testing and wanted to swap in a MockCalcService, having the static calls spread out across your code would make it very difficult.</p>
http://stackoverflow.com/questions/653861/join-two-wav-files-from-java/656302#6563024Answer by James Van Huis for Join two wav files from java ?James Van Huis2009-03-17T22:35:40Z2009-03-17T22:35:40Z<p>Here is the barebones code:</p>
<pre><code>import java.io.File;
import java.io.IOException;
import java.io.SequenceInputStream;
import javax.sound.sampled.AudioFileFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
public class WavAppender {
public static void main(String[] args) {
String wavFile1 = "D:\\wav1.wav";
String wavFile2 = "D:\\wav2.wav";
try {
AudioInputStream clip1 = AudioSystem.getAudioInputStream(new File(wavFile1));
AudioInputStream clip2 = AudioSystem.getAudioInputStream(new File(wavFile2));
AudioInputStream appendedFiles =
new AudioInputStream(
new SequenceInputStream(clip1, clip2),
clip1.getFormat(),
clip1.getFrameLength() + clip2.getFrameLength());
AudioSystem.write(appendedFiles,
AudioFileFormat.Type.WAVE,
new File("D:\\wavAppended.wav"));
} catch (Exception e) {
e.printStackTrace();
}
}
}
</code></pre>
http://stackoverflow.com/questions/643402/simple-java-date-calculations/643454#6434540Answer by James Van Huis for Simple Java Date CalculationsJames Van Huis2009-03-13T16:11:16Z2009-03-13T16:11:16Z<p><a href="http://www.javaworld.com/javaworld/jw-03-2001/jw-0330-time.html?page=1" rel="nofollow">Here is an article</a> discussing the use of the Date/Calendar facilities in java to calculate elapsed time.</p>
http://stackoverflow.com/questions/620590/how-to-reference-an-external-library-in-an-ant-build-and-general-ant-help/620659#6206590Answer by James Van Huis for How to reference an external library in an Ant build and general Ant help?James Van Huis2009-03-06T22:19:51Z2009-03-06T22:19:51Z<p>From what I can tell, you need to add the classpath elements to the manifest. Should look something like this:</p>
<pre><code> <manifest file="${dist}/MANIFEST.MF">
<attribute name="Built-By" value="${user.name}"/>
<attribute name="Main-Class" value="j2medemo.Routes.SAXParse"/>
<attribute name="Class-Path" value="WiFiTest.jar;placelab.jar"/>
</manifest>
</code></pre>
<p>The classpath entries should be relative to the location of the Jar in the distributable. From there, you should be able to execute the jar directly (using the -jar command line option, I'm not sure what this is for J9). Should be similar to the analogous Java call:</p>
<pre><code>java -jar MainJar.jar
</code></pre>
http://stackoverflow.com/questions/615614/at-what-point-does-refactoring-become-not-worth-it/616668#6166681Answer by James Van Huis for At what point does refactoring become not worth it?James Van Huis2009-03-05T21:19:32Z2009-03-05T21:19:32Z<p><a href="http://blog.objectmentor.com/articles/2009/01/09/the-big-redesign-in-the-sky" rel="nofollow">Uncle Bob weighs in</a> with the following:</p>
<blockquote>
<p><strong>When is a redesign the right strategy?</strong></p>
<p>I’m glad you asked that question. Here’s the answer. <strong>Never.</strong></p>
<p>Look, you made the mess, now clean it up.</p>
</blockquote>
http://stackoverflow.com/questions/615973/changing-locale-at-runtime-in-swing/616115#6161151Answer by James Van Huis for Changing locale at runtime in SwingJames Van Huis2009-03-05T18:56:08Z2009-03-05T18:56:08Z<p>You may want to save the language preference out, and then require a restart of the app for changes to take effect.</p>
<p>Then, you should be able to use <code>Locale.setDefault(Locale.<desired language>);</code> on startup, prior to rendering the GUI. That should properly switch your locale, which will result in the desired .properties file(s) being loaded.</p>
http://stackoverflow.com/questions/596937/prevent-jdbc-from-padding-strings-on-sql-insert-and-update/597014#5970140Answer by James Van Huis for Prevent jdbc from padding strings on sql insert and updateJames Van Huis2009-02-27T23:00:36Z2009-02-27T23:00:36Z<p>If you are using the bundled Sun JDBC-ODBC Bridge driver, you may want to consider migrating to a proper MS SQL JDBC driver. Sun does not recommend that the bridge driver be used in a production environment.</p>
<blockquote>
<p>The JDBC-ODBC Bridge driver is recommended only for experimental use or when no other alternative is available.</p>
</blockquote>
<p>Moving to a more targeted driver may fix your problem all together, or at least it will provide a production ready solution when you do fix the bug.</p>
http://stackoverflow.com/questions/570384/calling-mysql-exe-from-java/570469#5704691Answer by James Van Huis for Calling mysql.exe from JavaJames Van Huis2009-02-20T17:18:32Z2009-02-20T17:18:32Z<p>If you are only accessing this database from within Java, a better solution would be <a href="http://dev.mysql.com/downloads/connector/mxj/5.0.html" rel="nofollow">Connector/MXJ</a>. This will allow you to simply make a well formed JDBC call, and the library will take care of the database startup for you automatically.</p>
<p>Basically, the jar file contains in instance (or, for multiple platforms, instances) of the mysql server executable. It also contains a skeleton where you can load prepopulated data for your database. </p>
<p>The first time you access the JDBC connection, it will pull the proper mysql server out of the jar, and create the database in the current directory (using the prepopulated data from above). Any changes from that point on will be persistent, as expected.</p>
<p>Here's some more info:</p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/connector-mxj-configuration-driver-launched.html" rel="nofollow">Launching via JDBC</a></p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/connector-mxj-configuration-java-object.html" rel="nofollow">Launching via a Java Object</a></p>
http://stackoverflow.com/questions/553435/implementing-client-masterserver-slaveserver-application-java/553867#5538670Answer by James Van Huis for Implementing client - masterserver/slaveserver application javaJames Van Huis2009-02-16T16:24:04Z2009-02-16T16:24:04Z<p>Depending on your scalability needs, you may want to take a look at the <a href="http://today.java.net/cs/user/print/a/350" rel="nofollow">Java NIO package</a>. This will give you a starting point to build a scalable, non-blocking server implementation.</p>
http://stackoverflow.com/questions/481808/how-can-i-provide-a-custom-log4j-xml-for-different-ant-tasks/497298#4972980Answer by James Van Huis for How can I provide a custom log4j.xml for different ant tasks?James Van Huis2009-01-30T21:21:53Z2009-01-30T21:21:53Z<blockquote>
<p>If I set ANT_OPTS=-Dlog4j.configuration=Build/log4j.xml before running ant, the taskdefs correctly load the desired log4j.xml.</p>
</blockquote>
<p>Have you tried setting this property using sysproperty?</p>
<p>Should look something like this:</p>
<pre><code><target name="define.jasper2">
<sysproperty key="log4j.configuration" value="Build/log4j.xml"/>
...
</target>
</code></pre>
http://stackoverflow.com/questions/496884/javadoc-only-one-class-in-a-package-using-ant/496909#4969092Answer by James Van Huis for Javadoc only one class in a package using AntJames Van Huis2009-01-30T19:37:43Z2009-01-30T19:37:43Z<p>Use the sourcefiles parameter instead of sourcepath:</p>
<pre><code><javadoc
sourcefiles="jig-engine/src/path/to/your/file.java"
destdir="${target.path}/docs/javadoc/">
</javadoc>
</code></pre>
http://stackoverflow.com/questions/496651/connecting-to-remote-url-which-requires-authentication-using-java/496707#4967073Answer by James Van Huis for Connecting to remote URL which requires authentication using JavaJames Van Huis2009-01-30T18:51:15Z2009-01-30T18:58:10Z<p>You can set the default authenticator for http requests like this:</p>
<pre><code>Authenticator.setDefault (new Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication ("username", "password".toCharArray());
}
});
</code></pre>
<p>Also, if you require more flexibility, you can check out the <a href="http://hc.apache.org/httpclient-3.x/" rel="nofollow">Apache HttpClient</a>, which will give you more authentication options (as well as session support, etc.)</p>
http://stackoverflow.com/questions/444951/zsh-stop-backward-kill-word-on-directory-delimiter/444968#4449681Answer by James Van Huis for zsh: stop backward-kill-word on directory delimiterJames Van Huis2009-01-14T22:36:12Z2009-01-14T22:36:12Z<p>A quick google reveals:</p>
<p><a href="http://www.zsh.org/mla/users/2001/msg00870.html" rel="nofollow">Backward Kill</a></p>
<p>Or, perhaps a better fix:</p>
<p><a href="http://www.zsh.org/mla/users/2001/msg00868.html" rel="nofollow">Bash Style Backward Kill</a></p>
http://stackoverflow.com/questions/1652483/convert-between-url-and-windows-filename-javaComment by James Van Huis on Convert between URL and windows filename (Java)?James Van Huis2009-10-30T22:00:40Z2009-10-30T22:00:40Zi.e. www.google.com/search?q=bad+urls, which would not be a valid windows filename (due to the question mark).http://stackoverflow.com/questions/1652483/convert-between-url-and-windows-filename-javaComment by James Van Huis on Convert between URL and windows filename (Java)?James Van Huis2009-10-30T21:58:16Z2009-10-30T21:58:16ZI think he's talking about saving off the results of a web request by using the web URL as the filename. This runs into problems with characters such as '*' and '?', which are valid in a URL but invalid as part of a Windows file name. http://stackoverflow.com/questions/1367430/is-there-a-faster-way-to-escape-a-stringComment by James Van Huis on Is there a faster way to escape a string?James Van Huis2009-09-02T14:39:24Z2009-09-02T14:39:24ZYou still have a bug. The first replace statement (\\ -> \\\\) has no effect.http://stackoverflow.com/questions/1126227/indexof-case-sensitive/1126259#1126259Comment by James Van Huis on indexOf Case Sensitive?James Van Huis2009-07-14T15:53:26Z2009-07-14T15:53:26ZBeware of internationalization issues (i.e. the Turkish İ) when using toUpperCase. A more proper solution is to use str.toUpperCase(Locale.US).indexOf(...);http://stackoverflow.com/questions/1070590/how-can-i-write-an-exception-by-myself/1070593#1070593Comment by James Van Huis on How can I write an Exception by myself?James Van Huis2009-07-01T18:23:57Z2009-07-01T18:23:57ZNote: if you are using Eclipse, simply write 'throw new <CustomName>Exception', and then use the Autofix (Ctrl+1). This will create a new class for you which extends Exception, and contains the boilerplate code.http://stackoverflow.com/questions/1056683/should-we-use-type-cast-for-the-object-toarrayComment by James Van Huis on Should we use type cast for the object.toArray()???James Van Huis2009-06-29T14:46:25Z2009-06-29T14:46:25Znote: you can also use 'c.toArray(new String [] {});'http://stackoverflow.com/questions/1049983/jvm-xxstringcache-argumentComment by James Van Huis on JVM -XX:+StringCache argument?James Van Huis2009-06-26T16:33:35Z2009-06-26T16:33:35Z@mmyers: It is probably not supported in OpenJDK. Sun states: "Options that are specified with -XX are not stable and are not recommended for casual use. These options are subject to change without notice."http://stackoverflow.com/questions/970039/09-is-not-recognized-where-as-9-is-recognized/970070#970070Comment by James Van Huis on 09 is not recognized where as 9 is recognizedJames Van Huis2009-06-09T14:16:29Z2009-06-09T14:16:29ZAh, thanks. Fixed.http://stackoverflow.com/questions/961942/what-is-the-worst-programming-language-you-ever-worked-with/962481#962481Comment by James Van Huis on What is the worst programming language you ever worked with?James Van Huis2009-06-09T13:55:11Z2009-06-09T13:55:11ZLabview as well...http://stackoverflow.com/questions/936684/getting-the-class-name-from-a-static-method-in-java/936696#936696Comment by James Van Huis on Getting the class name from a static method in JavaJames Van Huis2009-06-01T20:48:26Z2009-06-01T20:48:26ZBut then, refactoring the class name in your IDE will not work properly.http://stackoverflow.com/questions/860676/random-crashes-of-java-vm-in-concurrentgcthreadComment by James Van Huis on Random crashes of Java VM in ConcurrentGCThreadJames Van Huis2009-05-13T22:23:50Z2009-05-13T22:23:50ZWhat OS is this on?http://stackoverflow.com/questions/820261/obfuscating-jar-files-with-other-jar-files-embedded/820763#820763Comment by James Van Huis on Obfuscating Jar files with other Jar files embeddedJames Van Huis2009-05-06T17:09:41Z2009-05-06T17:09:41Z@Saiyine: I really don't think so. You just have to have all the stakeholders in your project realize that it is not a 100% secure solution. Just because your door's lock can be picked does not mean that you should give up and leave your doors unlocked.http://stackoverflow.com/questions/787496/what-is-the-best-way-to-compute-trending-topics-or-tagsComment by James Van Huis on What is the best way to compute trending topics or tags?James Van Huis2009-05-05T19:34:10Z2009-05-05T19:34:10Z@Adam - He was given a couple of different options in pseudo-code in the other question, but dismissed them because he did not understand them. It seems that he wants the solution on a silver platter, not a strategy or algorithm for solving the problem.http://stackoverflow.com/questions/820261/obfuscating-jar-files-with-other-jar-files-embedded/820763#820763Comment by James Van Huis on Obfuscating Jar files with other Jar files embeddedJames Van Huis2009-05-05T14:28:06Z2009-05-05T14:28:06ZObfuscated code will produce stack traces with the obfuscated package/class/method names. Fortunately, most obfuscators contain a stack trace de-obfuscation tool.http://stackoverflow.com/questions/820261/obfuscating-jar-files-with-other-jar-files-embedded/820763#820763Comment by James Van Huis on Obfuscating Jar files with other Jar files embeddedJames Van Huis2009-05-04T16:35:10Z2009-05-04T16:35:10ZThis is somewhat true, but there is a question of effort. An unobfuscated jar will look almost identical to the original source code when decompiled. A well obfuscated jar will not decompile very well, and will require significantly more effort to extract working source code. This is not optimal, but it is certainly better than nothing to deter the casual attacker.