User Wouter Lievens - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:54:24Z http://stackoverflow.com/feeds/user/7927 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1762967/mathematical-evaluation-of-source-code/1763027#1763027 1 Answer by Wouter Lievens for Mathematical Evaluation of Source Code Wouter Lievens 2009-11-19T12:40:23Z 2009-11-19T12:40:23Z <p>The core of your problem isn't whether it's possible to do this (it obviously is). The real question is: what are good criteria? It's obviously very dependent on the situation, and highly subjective.</p> http://stackoverflow.com/questions/1701674/windows-executable-to-run-java-application-deleted-by-anti-virus-scanner 2 Windows Executable to run Java application deleted by anti virus scanner Wouter Lievens 2009-11-09T15:16:11Z 2009-11-09T20:51:41Z <p>I built a Java application that is delivered on USB sticks. To ensure compatibility, I ship an appropriate JVM on the sticks. I made an EXE that simply invokes this JVM with the application jar.</p> <p>Now the problem: some virus scanners act aggressively and just remove the executable!</p> <p>I tried an exe made with a "Batch file to Executable" tool and one written myself in C (invoking ShellExecute); both versions are detected and eliminated by Norton SONAR but I can imagine other virus scanners might react similarly.</p> <p>I initially opted for a windows shortcut but these don't seem to support relative paths. A batch file is not acceptable either since I don't want the command console to be shown.</p> http://stackoverflow.com/questions/387229/outlook-express-is-not-recognizing-some-html-emails 1 Outlook Express is not recognizing *some* HTML emails Wouter Lievens 2008-12-22T20:17:28Z 2009-10-16T09:18:48Z <p>I'm using HTML emails for a client's newsletter. Not using HTML mails is <strong>not</strong> an option. I've used PHPMailer for mailing, but I've also tried using PHP's mail() function directly. In both instances, I get the same problem described below. I've tried sending as multipart as well as sending just the HTML version.</p> <p>In every email client I tried, the emails arrive just fine. By that I mean the email is recognized as an HTML email and the content is rendered. Except on some accounts on <strong>Outlook Express</strong>. I've not been able to discern why it works for some people and why it doesn't work for others (all using Outlook Express). I have forwarded HTML emails to this account (from gmail as well as from outlook express) and they show up just fine. So the Outlook Express version is definitely capable of showing HTML emails.</p> <p>Now, in these failing cases, the Outlook Express ignores a significant part of the mail header. I can actually see this: when I view the <strong>original source</strong> of the email, it shows a part in bold - the header - and a part not in bold - the body.</p> <p>Below is the email message. I've redacted some "personal" parts.</p> <p>This part is in bold, recognized by Outlook Express as the header:</p> <pre><code>DomainKey-Status: no signature Received: (qmail xxxx invoked by uid xxx); 22 Dec 2008 21:04:33 +0100 To: xxxxxxxxxxxxxxxxxx Subject: Test Date: Mon, 22 Dec 2008 21:04:33 +0100 </code></pre> <p>And this part is not in bold, and shows up in the mail content panel of Outlook Express.</p> <pre><code>From: Root User &lt;xxxxxxxxxxxxxxxxxxxxxx&gt; Message-ID: &lt;xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx&gt; X-Priority: 3 X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version 2.0.3] MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="b1_cb79043f473b53e87bfa759755fce3ce" --b1_cb79043f473b53e87bfa759755fce3ce Content-Type: text/plain; charset = "iso-8859-1" Content-Transfer-Encoding: 8bit test --b1_cb79043f473b53e87bfa759755fce3ce Content-Type: text/html; charset = "iso-8859-1" Content-Transfer-Encoding: 8bit &lt;p&gt;Test&lt;/p&gt; --b1_cb79043f473b53e87bfa759755fce3ce-- </code></pre> http://stackoverflow.com/questions/325602/what-is-the-best-resizable-circular-byte-buffer-available-in-java 4 What is the best resizable circular byte buffer available in Java? Wouter Lievens 2008-11-28T12:00:21Z 2009-10-13T20:11:41Z <p>I need a byte buffer class in Java for single-threaded use. I should be able to insert data at the back of the buffer and read data at the front, with an amortized cost of O(1). The buffer should resize when it's full, rather than throw an exception or something.</p> <p>I could write one myself, but I'd be very surprised if this didn't exist yet in a standard Java package, and if it doesn't, I'd expect it to exist in some well-tested public library.</p> <p>What would you recommend?</p> http://stackoverflow.com/questions/1454049/is-the-specification-pattern-obsolete-when-you-can-use-dynamic-linq/1454083#1454083 1 Answer by Wouter Lievens for Is the Specification Pattern obsolete when you can use Dynamic LINQ? Wouter Lievens 2009-09-21T11:35:57Z 2009-09-21T11:35:57Z <p>I don't know LINQ really, but it seems to me that a declarative query system in general is related to the specification pattern. In particular, implementing a declarative query system by composing objects together in an object-oriented environment. IIRC that's akin to what LINQ does, providing a layer of syntactic sugar.</p> <p>Whether LINQ completely obsoletes the pattern, I can't tell. Maybe there are corner cases that just can't be expressed in LINQ?</p> http://stackoverflow.com/questions/1393056/html-canvas-draw-image-without-anti-aliasing 0 HTML Canvas: draw image without anti-aliasing Wouter Lievens 2009-09-08T09:51:46Z 2009-09-08T16:26:02Z <p>I want to do pixel-true rendering of some images on my Canvas. Right now, I obtain the images through Javascript, so my images are <code>HTMLImageElement</code> instances. I can draw these on the Canvas' rendering context with <code>drawImage</code>. However, this performs anti-aliasing on the image, which I don't want.</p> <p>There appears to be a lower-level image manipulation method named <code>putImageData</code>, operating on <code>ImageData</code> objects. Does this method perform any anti-aliasing? If not, it's a fine candidate for what I'm looking for, but I haven't found out how I can convert or blit an <code>HTMLImageElement</code> to an <code>ImageData</code> instance.</p> <p>Any advice would be welcome!</p> <p>Edit: my original problem was solved, I accidentally had a coordinate that was fractional, which forces anti-aliasing. The conversion-to-image-data question still stands though.</p> http://stackoverflow.com/questions/1299851/click-to-execute-in-mac-os-x 0 "Click to execute" in Mac OS X Wouter Lievens 2009-08-19T13:15:02Z 2009-08-19T13:37:22Z <p>I have a short script to start my application (it invokes java with some parameters). The application needs a grannny-proof launcher for Mac OS X. The application is not installed, it is not even copied to the host disk, it is instead delivered on USB sticks.</p> <p>When the user inserts the stick and opens it up, she should be able to click an appropriately named file (start_osx.sh for instance would do) and this would execute the script inside.</p> <p>I'm failing at this right now. When I click said file, it opens up in the text editor. Even if <code>chmod +x</code> is set on the file.</p> <p>Compiling the script to a "native" executable is an option if that will help me.</p> <p>Bonus points for if I can customize the file's icon as displayed in the file browser.</p> http://stackoverflow.com/questions/1293533/name-of-the-operating-system-in-java-not-os-name 0 Name of the Operating System in java (not "os.name") Wouter Lievens 2009-08-18T12:31:05Z 2009-08-18T16:25:05Z <p>I'd like to know how to get hold of the kind of Operating System the jvm is running on. It has to be "secure" as well, so <code>System.getProperty("os.name")</code> is not really an option because it can be trivially circumvented with the -D directive.</p> <p>By "secure" I mean nontrivial to circumvent. It's for a desktop application. The user could always deobfuscate, decompile, edit and recompile the code, but that is significantly harder than passing -D to the jvm. We want to make tinkering nontrivial, not impossible (since that can't be done).</p> http://stackoverflow.com/questions/1130660/portable-way-of-finding-total-disk-size-in-java-pre-java-6 3 Portable way of finding total disk size in Java (pre java 6) Wouter Lievens 2009-07-15T10:39:05Z 2009-08-10T20:34:27Z <p>I need to find the total size of a drive in Java 5 (or 1.5, whatever). I know that Java 6 has a new method in java.io.File, but I need it to work in Java 5.</p> <p>Apache Commons IO has org.apache.commons.io.FileSystemUtils to provide the <em>free</em> disk space, but not the total disk space.</p> <p>I realize this is OS dependant and will need to depend on messy command line invocation. I'm fine with it working on "most" systems, i.e. windows/linux/macosx. Preferably I'd like to use an existing library rather than write my own variants.</p> <p>Any thoughts? Thanks.</p> http://stackoverflow.com/questions/1227569/file-modification-date-in-java 1 File modification date in Java Wouter Lievens 2009-08-04T13:34:24Z 2009-08-04T14:11:41Z <p>I set the modification date of a file created in Java to a specific number. When I read out that value on Windows, I get the same value out. However, on Linux (ubuntu) I get a different value. The value for File.lastModified() is off by 9 hours, yet when I look a the file properties I see that it's off by 1 hour only. I am expecting the same value across the board.</p> <p>Am I wrong to depend on this being compatible and consistent? The <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/io/File.html#setLastModified%28long%29" rel="nofollow">javadoc</a> is pretty unambiguous on the meaning of the method and does not mention potential incompatibilities.</p> http://stackoverflow.com/questions/1134543/how-can-i-share-code-between-c-and-flex/1136661#1136661 1 Answer by Wouter Lievens for How can I share code between C# and Flex? Wouter Lievens 2009-07-16T10:17:51Z 2009-07-16T10:17:51Z <p>I'd hack together a domain model specification and have it generate models in both languages. But that's probably not the most time-effective thing to do.</p> http://stackoverflow.com/questions/610682/bss-section-in-elf-file 13 .bss section in elf file Wouter Lievens 2009-03-04T14:00:48Z 2009-04-18T14:14:25Z <p>If I understand correctly, the <code>.bss</code> section in ELF files is used to allocate space for zero-initialized variables. Our tool chain produces ELF files, hence my question: does the <code>.bss</code> section actually have to contain all those zeroes? It seems such an awful waste of spaces that when, say, I allocate a global ten megabyte array, it results in ten megabytes of zeroes in the ELF file. What am I seeing wrong here?</p> http://stackoverflow.com/questions/756146/which-files-do-control-the-visibility-of-your-website/756150#756150 1 Answer by Wouter Lievens for Which files do control the visibility of your website? Wouter Lievens 2009-04-16T13:35:42Z 2009-04-16T13:35:42Z <p>Do you have an index file in the directory?</p> http://stackoverflow.com/questions/705737/how-do-i-do-source-level-debug-of-library/705970#705970 1 Answer by Wouter Lievens for How do I do source level debug of library Wouter Lievens 2009-04-01T15:04:57Z 2009-04-01T15:04:57Z <p>You could try to see if mimicking the exact same directory structure works. If you're not sure what directory structure the compiler annotated in the debug info in the executable, you can always look at it with <code>dwarfdump</code> (on linux).</p> http://stackoverflow.com/questions/672791/how-to-search-in-a-html-file-for-some-tags/672816#672816 2 Answer by Wouter Lievens for How to search in a HTML file for some tags? Wouter Lievens 2009-03-23T10:11:57Z 2009-03-23T10:11:57Z <p>Do you want to do this as a one-time editing task, or do you need a systematic (i.e. code) implementation? In the second case, find a Java HTML parser implementation and walk the DOM tree.</p> <p><a href="http://java-source.net/open-source/html-parsers" rel="nofollow">http://java-source.net/open-source/html-parsers</a></p> http://stackoverflow.com/questions/585587/java-native-array-lengths/585615#585615 0 Answer by Wouter Lievens for Java native array lengths Wouter Lievens 2009-02-25T11:12:50Z 2009-02-25T11:12:50Z <p>Alternatively, you could wrap your 2d array into a Matrix or Grid class of some sort. Internally, you could represent it as a 1d array and compute offsets for the row/col coordinates.</p> http://stackoverflow.com/questions/585593/how-to-do-tdd-with-hardware/585612#585612 0 Answer by Wouter Lievens for How to do TDD with hardware Wouter Lievens 2009-02-25T11:11:20Z 2009-02-25T11:11:20Z <p>If you have a simulator, you could write tests against the simulator and run these tests against the hardware.</p> <p>It's hard to answer the questions with so little detail :-)</p> http://stackoverflow.com/questions/331191/what-interesting-novel-surprising-uses-have-you-found-for-automated-tests/561525#561525 0 Answer by Wouter Lievens for What interesting/novel/surprising uses have you found for automated tests? Wouter Lievens 2009-02-18T15:31:21Z 2009-02-18T15:31:21Z <p>In a JUnit test method, you can automatically generate a filename based on the test name. For instance:</p> <pre><code>File output = new File("tests/" + getClass().getSimpleName() + "/" + getName() + ".html") File reference = new File("tests/" + getClass().getSimpleName() + "/" + getName() + ".html.ref"); </code></pre> http://stackoverflow.com/questions/561432/how-to-find-the-line-number-of-the-start-of-a-procedure-in-eclipse/561503#561503 0 Answer by Wouter Lievens for How to find the line number of the start of a procedure in Eclipse Wouter Lievens 2009-02-18T15:28:02Z 2009-02-18T15:28:02Z <p>You could wrap the <code>String</code> with a <code>BufferedReader</code> instance, which supports a <code>readLine()</code> method. This method presumably correctly parses any kind of separator.</p> http://stackoverflow.com/questions/377423/best-practices-for-file-system-dependencies-in-unit-integration-tests/510649#510649 0 Answer by Wouter Lievens for Best practices for file system dependencies in unit/integration tests Wouter Lievens 2009-02-04T09:30:57Z 2009-02-04T09:30:57Z <p>Give the test files, both in and out, names that are structurally similar to the unit test name.</p> <p>In JUnit, for instance, I'd use:</p> <pre><code>File reportFile = new File("tests/output/" + getClass().getSimpleName() + "/" + getName() + ".report.html"); </code></pre> http://stackoverflow.com/questions/502790/how-can-i-get-an-html-page-to-read-the-contents-of-a-text-document/502798#502798 1 Answer by Wouter Lievens for How can I get an HTML page to read the contents of a text document? Wouter Lievens 2009-02-02T10:39:01Z 2009-02-02T10:39:01Z <p>It seems like you can use #include directives in IIS.</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms525185.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms525185.aspx</a></p> <p>But to be honest I strongly suggest using a scripting language, either PHP or something in the ASP family.</p> http://stackoverflow.com/questions/499573/is-antlr-a-dsl-generator-and-an-alternative-to-intentional-programming/500823#500823 1 Answer by Wouter Lievens for Is Antlr a DSL generator and an alternative to Intentional Programming? Wouter Lievens 2009-02-01T13:41:44Z 2009-02-01T13:41:44Z <p>ANTLR is just a parser generator. In any non-trivial DSL, writing the parser is less than 50% of the effort expended in implementing the DSL. The evaluator/rule engine/code generator/schedule or whatever else your DSL does, probably requires more work and can't be generated like a parser.</p> http://stackoverflow.com/questions/439574/whats-the-best-way-to-refactor-a-method-that-has-too-many-6-parameters/439604#439604 6 Answer by Wouter Lievens for What's the best way to refactor a method that has too many (6+) parameters? Wouter Lievens 2009-01-13T16:12:27Z 2009-01-13T16:12:27Z <p>The classic answer to this is to use a class to encapsulate some, or all, of the parameters. In theory that sounds great, but I'm the kind of guy who creates classes for concepts that have meaning in the domain, so it's not always easy to apply this advice.</p> <p>E.g. instead of:</p> <pre><code>driver.connect(host, user, pass) </code></pre> <p>You could use</p> <pre><code>config = new Configuration() config.setHost(host) config.setUser(user) config.setPass(pass) driver.connect(config) </code></pre> <p>YMMV</p> http://stackoverflow.com/questions/387229/outlook-express-is-not-recognizing-some-html-emails/389707#389707 1 Answer by Wouter Lievens for Outlook Express is not recognizing *some* HTML emails Wouter Lievens 2008-12-23T18:37:36Z 2008-12-23T18:37:36Z <p>Okay, I think I solved the problem. The various lines in the header were separated by \r\n and apparently Outlook expected them to be separated by \n only. Even PHPMailer seems to do this, so I'm using PHP's mail() function now.</p> http://stackoverflow.com/questions/378420/scaling-a-rich-domain-model 6 Scaling a rich domain model Wouter Lievens 2008-12-18T16:34:38Z 2008-12-18T17:39:41Z <p>Domain Driven Design encourages you to use a rich domain model. This means all the domain logic is located in the domain model, and that the domain model is supreme. Persistence becomes an external concern, as the domain model itself ideally knows nothing of persistence (e.g. the database).</p> <p>I've been using this in practice on a medium-size one-man project (>100k lines of Java) and I'm discovering many advantages, mostly the flexibility and refactorability that this offers over a database-oriented approach. I can add and remove domain classes, hit a few buttons and an entire new database schema and SQL layer rolls out.</p> <p>However, I often face issues where I'm finding it difficult to reconcile the rich domain logic with the fact that there's an SQL database backing the application. In general, this results in the typical "1+N queries problem", where you fetch N objects, and then execute a nontrivial method on each object that again triggers queries. Optimizing this by hand allows you to do the process in a constant number of SQL queries.</p> <p>In my design I allow for a system to plug these optimized versions in. I do this by moving the code into a "query module" which contains dozens of domain-specific queries (e.g. getActiveUsers), of which I have both in-memory (naive and not scalable) and SQL-based (for deployment use) implementations. This allows me to optimize the hotspots, but there are two main disadvantages:</p> <ul> <li>I'm effectively moving some of my domain logic to places where it doesn't really belong, and in fact even pushing it into SQL statements.</li> <li>The process requires me to peruse query logs to find out where the hotspots are, after which I have to refactor the code, reducing its level abstraction by lowering it into queries.</li> </ul> <p>Is there a better, cleaner way to reconcile Domain-Driven-Design and its Rich Domain Model with the fact that you can't have all your entities in memory and are therefore confined to a database backend?</p> http://stackoverflow.com/questions/152077/programming-against-interfaces-do-you-write-interfaces-for-all-your-domain-class/378460#378460 1 Answer by Wouter Lievens for Programming against interfaces: Do you write interfaces for all your domain classes? Wouter Lievens 2008-12-18T16:47:21Z 2008-12-18T16:47:21Z <p>*I do it because I need it for creating proxies of my domain objects.</p> http://stackoverflow.com/questions/309307/ddd-public-parameterless-constructors-should-they-exist/378434#378434 0 Answer by Wouter Lievens for DDD + Public Parameterless Constructors - Should They Exist? Wouter Lievens 2008-12-18T16:39:17Z 2008-12-18T16:39:17Z <p>It all depends on who calls the constructor. If only your factories do, then there isn't really a problem, because your factory methods become the "domain-side" constructors and the real constructors are an implementation detail.</p> http://stackoverflow.com/questions/362724/how-do-i-get-gdb-to-ignore-my-shell-windows-size 2 How do I get gdb to ignore my shell window's size? Wouter Lievens 2008-12-12T13:29:00Z 2008-12-16T13:26:20Z <p>This is part of our unit test flow. I run gdb with the --command option to have it execute commands from a text file. The output of gdb is then directed into a file, and that file is compared to a reference file. But the problem is, gdb uses the current shell window's size to place newlines in its output. If the window is smaller, it will add more newlines to the output to make it more readable.</p> <p>Is there an option in gdb to disable this, so that my test's output is always the same regardless of the shell window I run it in?</p> <p>Edit: found it, I just use this as the first gdb command:</p> <pre><code>set width 80 </code></pre> <p>Sometimes things are easy.</p> http://stackoverflow.com/questions/362724/how-do-i-get-gdb-to-ignore-my-shell-windows-size/371295#371295 1 Answer by Wouter Lievens for How do I get gdb to ignore my shell window's size? Wouter Lievens 2008-12-16T13:26:20Z 2008-12-16T13:26:20Z <p>Found it, I just use this as the first gdb command:</p> <pre><code>set width 80 </code></pre> <p>Sometimes things are easy.</p> http://stackoverflow.com/questions/362773/can-you-send-dynamic-data-to-a-processing-applet/362852#362852 0 Answer by Wouter Lievens for Can you send dynamic data to a processing applet? Wouter Lievens 2008-12-12T14:08:32Z 2008-12-12T14:08:32Z <p>You could make http requests from the java applet. I don't know anything about processing applets though.</p> http://stackoverflow.com/questions/1718037/abuse-of-c-lambda-expressions-or-syntax-brilliance/1718108#1718108 Comment by Wouter Lievens on Abuse of C# lambda expressions or Syntax brilliance? Wouter Lievens 2009-12-02T14:33:06Z 2009-12-02T14:33:06Z &quot;Guessing based on the values used&quot; is ALWAYS what you do when looking at code. If you encounter a call to stream.close() you assume it closes a stream, yet it might as well do something completely different. http://stackoverflow.com/questions/1701674/windows-executable-to-run-java-application-deleted-by-anti-virus-scanner/1703721#1703721 Comment by Wouter Lievens on Windows Executable to run Java application deleted by anti virus scanner Wouter Lievens 2009-12-02T08:59:39Z 2009-12-02T08:59:39Z It ended up working with NSIS... I tried all the others but they all got picked off. Thanks! http://stackoverflow.com/questions/1762950/my-jquery-code-is-working-but-is-it-very-crappy-from-a-programmers-point-of-vie/1762969#1762969 Comment by Wouter Lievens on My jQuery code is working, but is it very crappy from a programmer's point of view? Wouter Lievens 2009-11-19T12:42:15Z 2009-11-19T12:42:15Z +1 for using $this - the prefix. I always felt dirty when caching jQuery directives, because it meant losing the jQuery readibility. Your practice addresses that! http://stackoverflow.com/questions/1701674/windows-executable-to-run-java-application-deleted-by-anti-virus-scanner/1701762#1701762 Comment by Wouter Lievens on Windows Executable to run Java application deleted by anti virus scanner Wouter Lievens 2009-11-09T15:55:48Z 2009-11-09T15:55:48Z Also, I see more than a flicker if I use start/b, actually no difference at all, sorry. http://stackoverflow.com/questions/1701674/windows-executable-to-run-java-application-deleted-by-anti-virus-scanner/1701762#1701762 Comment by Wouter Lievens on Windows Executable to run Java application deleted by anti virus scanner Wouter Lievens 2009-11-09T15:34:03Z 2009-11-09T15:34:03Z The application saves data on the stick, so it cannot be write protected. http://stackoverflow.com/questions/333664/simple-long-polling-example-code/333702#333702 Comment by Wouter Lievens on Simple "Long Polling" example code? Wouter Lievens 2009-09-24T09:41:22Z 2009-09-24T09:41:22Z This is a busy wait that blocks your current thread. That doesn't scale at all. http://stackoverflow.com/questions/1453938/link-checking-a-password-protected-website/1453986#1453986 Comment by Wouter Lievens on Link checking a password protected website Wouter Lievens 2009-09-21T11:37:47Z 2009-09-21T11:37:47Z Check what mechanism the private site uses. If it's cookies, stuff the right cookie in your requests when you pull the data. http://stackoverflow.com/questions/1393056/html-canvas-draw-image-without-anti-aliasing/1394919#1394919 Comment by Wouter Lievens on HTML Canvas: draw image without anti-aliasing Wouter Lievens 2009-09-08T18:45:54Z 2009-09-08T18:45:54Z Thanks. I figured this might be the only way, but I'm still fighting with some inexplicable implementation issues. http://stackoverflow.com/questions/1293533/name-of-the-operating-system-in-java-not-os-name/1294987#1294987 Comment by Wouter Lievens on Name of the Operating System in java (not "os.name") Wouter Lievens 2009-08-20T10:35:06Z 2009-08-20T10:35:06Z You describe the problem well. And yes, I can use the tips from this thread to find out if they are lying about the OS and fail in that case. http://stackoverflow.com/questions/765672/why-do-so-many-insist-on-dragging-the-jvm-into-new-applications/765832#765832 Comment by Wouter Lievens on Why do so many insist on dragging the JVM into new applications? Wouter Lievens 2009-08-19T10:09:23Z 2009-08-19T10:09:23Z The memory overhead of the JVM is significiant. http://stackoverflow.com/questions/1293533/name-of-the-operating-system-in-java-not-os-name/1294987#1294987 Comment by Wouter Lievens on Name of the Operating System in java (not "os.name") Wouter Lievens 2009-08-18T18:21:25Z 2009-08-18T18:21:25Z The security concern is &quot;copy protection&quot;. It should be nontrivial to run the application on a medium (usb stick) other than the one it is delivered on. http://stackoverflow.com/questions/1293533/name-of-the-operating-system-in-java-not-os-name Comment by Wouter Lievens on Name of the Operating System in java (not "os.name") Wouter Lievens 2009-08-18T13:47:24Z 2009-08-18T13:47:24Z Or at least that's the current design, but I could change that. I'll think about it. http://stackoverflow.com/questions/1293533/name-of-the-operating-system-in-java-not-os-name Comment by Wouter Lievens on Name of the Operating System in java (not "os.name") Wouter Lievens 2009-08-18T13:45:41Z 2009-08-18T13:45:41Z There is one jar file that has to serve every platform. http://stackoverflow.com/questions/1293533/name-of-the-operating-system-in-java-not-os-name Comment by Wouter Lievens on Name of the Operating System in java (not "os.name") Wouter Lievens 2009-08-18T13:27:47Z 2009-08-18T13:27:47Z The application needs to perform a number of operations that are not supported in Java's standard libraries. That means the code contains a number of exec() calls. These commands are OS-dependent. http://stackoverflow.com/questions/1293533/name-of-the-operating-system-in-java-not-os-name Comment by Wouter Lievens on Name of the Operating System in java (not "os.name") Wouter Lievens 2009-08-18T12:54:06Z 2009-08-18T12:54:06Z Secure means nontrivial to circumvent. It's for a desktop application. The user could always deobfuscate, decompile, edit and recompile the code, but that is significantly harder than passing -D to the jvm. We want to make tinkering nontrivial, not impossible (since that can't be done).