User Blade - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T00:34:45Zhttp://stackoverflow.com/feeds/user/4064http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/241269/method-for-email-testing/241278#2412785Answer by Blade for Method for email testingBlade2008-10-27T20:29:28Z2009-11-30T20:55:29Z<p>In java you can use <a href="http://quintanasoft.com/dumbster/" rel="nofollow">dumpster</a></p>
<p>Its easy to use and you can validate every aspect of the email you are intercepting.</p>
<p>It's a Java SMTP server implementation meant for unit testing. (Just make sure you redirect your email to the machine running dumbster...)</p>
<p><hr></p>
<p>I just found another alternative that do almost the same: <a href="http://www.icegreen.com/greenmail/" rel="nofollow">Greenmail</a></p>
<p>Greenmail also support POP3, IMAP with SSL so you can test your client against it.</p>
http://stackoverflow.com/questions/806659/what-are-the-best-habits-of-highly-effective-programmers/810294#81029413Answer by Blade for What are the best habits of highly effective programmers?Blade2009-05-01T05:29:02Z2009-10-29T13:52:01Z<p><a href="http://en.wikipedia.org/wiki/Overengineering" rel="nofollow"><strong>Don't overengineer</strong></a></p>
<p>Edit: For me, it means, don't overdo something. Make only what's needed to be done and trust yourself for the future. Also, keep the complexity at the bare minimum. For example, don't use interfaces or proxy or whatever pattern you have on your mind on a beautiful day just for the sake of it. Keep it simple !</p>
<p>More info:
<a href="http://stackoverflow.com/questions/750112/overengineering-how-to-avoid-it">SO: overengineering-how-to-avoid-it</a></p>
http://stackoverflow.com/questions/1608548/how-to-trigger-a-phone-call-when-clicking-a-link-in-a-web-page-on-mobile-phone1How to Trigger a phone call when clicking a link in a web page on mobile phoneBlade2009-10-22T16:52:44Z2009-10-23T16:53:53Z
<p>Hi SO,</p>
<p>I need to build a web page for mobile device. There's only one thing I still haven't figured out: how can I trigger a phone call through the clic of an image or text.</p>
<p>Is there a special url I could enter like the mailto: tag for emails ? </p>
<p>Device specific solution are envisagable.</p>
<p>I know Iphone automatically recognise phone number and create a link for this but it would be great if this could be done for images too... and also for most mobile devices.</p>
<p>Thanks !</p>
<p>Fred</p>
http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved1How to determine if a file will be logically moved or physically moved.Blade2009-04-10T06:14:32Z2009-09-16T15:04:58Z
<p><strong>The facts:</strong></p>
<p>When a file is moved, there's two possibilities:</p>
<ol>
<li>The source and destination file are on the same partition and only the file system index is updated</li>
<li>The source and destination are on two different file system and the file need to be moved byte per byte. (aka copy on move)</li>
</ol>
<p><strong>The question:</strong></p>
<p>How can I determine if a file will be either logically or physically moved ?</p>
<p>I'm transferring large files (700+ megs) and would adopt a different behaviors for each situation.</p>
<p><hr /></p>
<p>Edit:</p>
<p>I've already coded a moving file dialog with a worker thread that perform the blocking io call to copy the file a meg at a time. It provide information to the user like rough estimate of the remaining time and transfer rate. </p>
<p><strong>The problem is: how do I know if the file can be moved logically before trying to move it physically ?</strong></p>
http://stackoverflow.com/questions/550329/how-to-open-a-file-with-the-default-associated-program1How to open a file with the default associated programBlade2009-02-15T04:36:57Z2009-05-22T14:05:16Z
<p>How do I open a file with the default associated program in Java? (for example a movie file) </p>
http://stackoverflow.com/questions/396245/add-a-dependency-in-maven/765032#7650322Answer by Blade for Add a dependency in MavenBlade2009-04-19T07:49:42Z2009-04-19T07:49:42Z<p>You can also specify a dependency not in a maven repository. Could be usefull when no central maven repository for your team exist or if you have a <a href="http://en.wikipedia.org/wiki/Continuous%5Fintegration" rel="nofollow">CI</a> server</p>
<pre><code> <dependency>
<groupId>com.stackoverflow</groupId>
<artifactId>commons-utils</artifactId>
<version>1.3</version>
<scope>system</scope>
<systemPath>${basedir}/lib/commons-utils.jar</systemPath>
</dependency>
</code></pre>
http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/737064#7370642Answer by Blade for How to determine if a file will be logically moved or physically moved.Blade2009-04-10T08:34:23Z2009-04-12T04:19:36Z<p>Ok I'm on something :)</p>
<p>Using <strong><a href="https://jna.dev.java.net/" rel="nofollow">JNA</a></strong> I am able to <strong>call the Win32 API</strong> (and *nix API too) <strong>from java</strong>.</p>
<p>I tried calling <code>GetFileInformationByHandle</code> and did got a result BUT the <code>dwVolumeSerialNumber</code> attribute always equals 0 (tried with my C: and D: drive)</p>
<p>Then I saw this function on MSDN: <a href="http://msdn.microsoft.com/en-us/library/aa365240%28VS.85,loband%29.aspx" rel="nofollow"><code>MoveFileEx</code></a>. We can read from MSDN that if the flag parametter equals 0, the copy on move feature will be disable. <strong>AND IT DOES !!!!</strong></p>
<p>So I will simply call </p>
<pre><code>if (!Kernel32.INSTANCE.MoveFileEx(source.getAbsolutePath(), destination.getAbsolutePath(), 0)) {
System.out.println("logical move failed");
}
</code></pre>
<p>Here is the code to put in the <code>Kernel32.java</code> interface (this file can be found in the src.zip package in the download section of the site):</p>
<pre><code>boolean MoveFileEx(String lpExistingFileName, String lpNewFileName, int dwFlags);
int MOVEFILE_REPLACE_EXISTING = 0x01;
int MOVEFILE_COPY_ALLOWED = 0x02;
int MOVEFILE_CREATE_HARDLINK = 0x04;
int MOVEFILE_WRITE_THROUGH = 0x08;
int MOVEFILE_DELAY_UNTIL_REBOOT = 0x10;
int MOVEFILE_FAIL_IF_NOT_TRACKABLE = 0x20;
</code></pre>
http://stackoverflow.com/questions/736580/are-windows-logo-tm-certified-applications-harder-to-write-in-java/736873#7368731Answer by Blade for Are Windows Logo (TM) Certified applications harder to write in Java?Blade2009-04-10T06:23:21Z2009-04-10T06:23:21Z<p>For the look and feel, call this at the beggining of your <code>main()</code> function:</p>
<pre><code> log.info("Setting java look and feel");
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (Exception e) {
log.warn("Could not set system look and feel", e);
}
// Make sure we have nice window decorations.
JFrame.setDefaultLookAndFeelDecorated(true);
JDialog.setDefaultLookAndFeelDecorated(true);
</code></pre>
http://stackoverflow.com/questions/580419/how-can-i-stop-a-java-while-loop-from-eating-50-of-my-cpu/583537#5835371Answer by Blade for How can I stop a Java while loop from eating >50% of my CPU!?Blade2009-02-24T20:50:59Z2009-02-24T20:50:59Z<p>While yes, you could do a </p>
<pre><code>Thread.sleep(50)
</code></pre>
<p>like the accepted answer suggest, you could also call </p>
<pre><code>Thread.sleep(0)
</code></pre>
<p>This will tell the processor to do a context switch. Other threads waiting to be executed (like the GUI drawing thread) will then be executed and the machine will stop feeling slow.</p>
<p>The sleep(0) way will also maximise the time given by the OS to you application because the thread will immediatly go back in the processor's queue (instead of waiting 50ms before doing so) so if no other thread where waiting, you thread will continue being executed.</p>
http://stackoverflow.com/questions/277630/hibernate-jpa-sequence-non-id/282774#2827740Answer by Blade for Hibernate JPA Sequence (non-Id)Blade2008-11-12T01:54:33Z2008-11-12T01:54:33Z<p>I've been in a situation like you (JPA/Hibernate sequence for non @Id field) and I ended up creating a trigger in my db schema that add a unique sequence number on insert. I just never got it to work with JPA/Hibernate</p>
http://stackoverflow.com/questions/266693/using-generic-parameters-with-static-compareobject-method/266789#2667891Answer by Blade for Using generic parameters with static compareObject methodBlade2008-11-05T21:33:16Z2008-11-05T21:33:16Z<p>Here's what you are looking for:</p>
<pre><code>public static <T extends Comparable<T>> int compareObject(T o1, T o2) {
if ((o1 instanceof String) && (o2 instanceof String))
return ((String) o1).toUpperCase().compareTo(((String) o2).toUpperCase());
else
return o1.compareTo(o2);
}
</code></pre>
http://stackoverflow.com/questions/264309/why-do-people-defend-the-regex-syntax/264314#2643146Answer by Blade for Why do people defend the regex syntax?Blade2008-11-05T04:00:27Z2008-11-05T15:53:25Z<p>Another problem with regex is that there are many flavours of it. .Net regex vs php regex vs other regex, all look alike but don't give the same result (sometimes no result at all).</p>
http://stackoverflow.com/questions/261080/resizable-java-component/261124#2611240Answer by Blade for Resizable Java componentBlade2008-11-04T07:06:32Z2008-11-04T07:06:32Z<p>the JStatusBar ?</p>
http://stackoverflow.com/questions/250045/ui-diagram-layout/250195#2501950Answer by Blade for UI diagram layoutBlade2008-10-30T13:37:24Z2008-11-02T00:54:02Z<p>Any uml tool should do the work</p>
<p>Take a look at <a href="http://www.umlet.com/" rel="nofollow">UMLet</a> or <a href="http://www.netbeans.org/" rel="nofollow">NetBeans</a> as UML editors made in Java.</p>
<p>(BTW, Visio Is usually the standard tool for that job)</p>
http://stackoverflow.com/questions/252775/advanced-java-generics-question-why-do-we-need-to-specify-redundant-information0Advanced Java Generics question: why do we need to specify redundant informationBlade2008-10-31T07:12:40Z2008-10-31T15:58:27Z
<p>Hi,</p>
<p>I've got some generic class for my JPA model POJO that goes like this:</p>
<pre><code>public interface Identifiable<PK extends Serializable> {
PK getUniqueId();
}
public interface GenericDao<T extends Identifiable<PK>> {
public T findById(PK id);
}
</code></pre>
<p>This code won't compile. For this to work, I need to specify </p>
<pre><code>public interface GenericDao<T extends Identifiable<PK>, PK extends Serializable>
</code></pre>
<p>But that's redundant information !! The fact that T extends Identifiable imply that a PK type will be specified for the Identifiable instance and that this is the type to use for the DAO's PK. </p>
<p>How can I make this work without redundant information ?</p>
<p>Thanks, Fred</p>
<p><hr /></p>
<p><strong>Edit:</strong> Simplified example</p>
http://stackoverflow.com/questions/252459/one-svn-repository-or-many/252717#2527173Answer by Blade for One SVN repository or many?Blade2008-10-31T06:05:38Z2008-10-31T06:05:38Z<p>Be aware that when making your decision, <a href="http://www.gentoo-wiki.info/HOWTO_Trac_with_Apache2_SVN_and_multiple_Repositories" rel="nofollow">many SVN repos can share the same config file.</a></p>
<p>Example (taken from link above):</p>
<p>In shell:</p>
<pre><code>$ svn-admin create /var/svn/repos1
$ svn-admin create /var/svn/repos2
$ svn-admin create /var/svn/repos3
</code></pre>
<p>File: /var/svn/repos1/conf/svnserve.conf</p>
<pre><code>[general]
anon-access = none # or read or write
auth-access = write
password-db = /var/svn/conf/passwd
authz-db = /var/svn/conf/authz
realm = Repos1 SVN Repository
</code></pre>
<p>File: /var/svn/conf/authz</p>
<pre><code>[groups]
group_repos1_read = user1, user2
group_repos1_write = user3, user4
group_repos2_read = user1, user4
### Global Right for all repositories ###
[/]
### Could be a superadmin or something else ###
user5 = rw
### Global Rights for one repository (e.g. repos1) ###
[repos1:/]
@group_repos1_read = r
@group_repos1_write = rw
### Repository folder specific rights (e.g. the trunk folder) ###
[repos1:/trunk]
user1 = rw
### And soon for the other repositories ###
[repos2:/]
@group_repos2_read = r
user3 = rw
</code></pre>
http://stackoverflow.com/questions/252459/one-svn-repository-or-many/252586#2525861Answer by Blade for One SVN repository or many?Blade2008-10-31T04:20:08Z2008-10-31T06:03:46Z<p>If you plan to or use tool like trac wich integrate with SVN, it makes more sense to use one repo per project.</p>
http://stackoverflow.com/questions/250560/correct-approach-to-properties/250814#2508140Answer by Blade for Correct approach to Properties.Blade2008-10-30T16:25:25Z2008-10-30T16:25:25Z<p>Approache 2 is defenetly better. </p>
<p>Anyway, you should not let other class search through config object. You should injet config taken in the config object ouside the object.</p>
<p>Take a look at <a href="http://commons.apache.org/configuration/index.html" rel="nofollow">apache commons configuration</a> for help with configuration Impl.</p>
<p>So in the main() you could have</p>
<pre><code>MyObject mobj = new MyObject();
mobj.setLookupDelay(appConfig.getMyObjectLookupDelay);
mobj.setTrackerName(appConfig.getMyObjectTrackerName);
</code></pre>
<p>Instead of</p>
<pre><code>MyObject mobj = new MyObject();
mobj.setConfig(appConfig);
</code></pre>
<p>where appConfig is a wrapper around the apache configuration library that do all the lookup of the value base on the name of the value in a config file.</p>
<p>this way your object become very easily testable.</p>
http://stackoverflow.com/questions/245723/how-jpa-hibernate-deal-with-transaction-when-fetching-object-from-database0How JPA (Hibernate) deal with transaction when fetching Object from databaseBlade2008-10-29T03:39:47Z2008-10-29T10:44:12Z
<p>Hi all,</p>
<p>I'm currently developping an application in java using Hibernate as a persistence manager and JPA as an abstraction of the persistence manage hibernate. </p>
<p>I'd like to know the impact of wrapping a result query around a transaction. I know the entity manager must stay open for lazily fetched field bug what about transaction in all this ?</p>
<p>Here is a code example with transaction activation/desactivation ability.</p>
<pre><code>public List<Exportdata> get(Integer max, EntityManager em, Boolean withTransaction) {
EntityTransaction tx = null;
try {
if (withTransaction) {
tx = em.getTransaction();
tx.begin();
}
Query query = em.createQuery("from Exportdata");
query.setMaxResults(10);
List<Exportdata> list = query.getResultList();
if (withTransaction)
tx.commit();
return list;
} catch (RuntimeException re) {
if (withTransaction)
if (tx != null && tx.isActive())
tx.rollback();
throw re;
}
}
</code></pre>
<p>What is the difference between enabling or disabling withTransaction when this function is called ?</p>
<p>Thanks all,
Fred</p>
http://stackoverflow.com/questions/229143/comparing-hibernate-mapped-dates/244022#2440220Answer by Blade for Comparing hibernate-mapped dates?Blade2008-10-28T16:51:17Z2008-10-28T16:51:17Z<p>Personnaly, I truncate every date I receive in my POJO object with the Apache commons lang package class named DateUtils.</p>
<p>See [Apache commons site][1]</p>
<p>[1]: <a href="http://commons.apache.org/lang/api/org/apache/commons/lang/time/DateUtils.html#truncate" rel="nofollow">http://commons.apache.org/lang/api/org/apache/commons/lang/time/DateUtils.html#truncate</a>(java.util.Date, int)</p>
http://stackoverflow.com/questions/42908/where-is-the-chink-in-google-chromes-armor/42969#42969-1Answer by Blade for Where is the chink in Google Chrome's armor??Blade2008-09-04T01:07:47Z2008-09-04T01:07:47Z<p>You have to keep in mind that Microsoft primary business is Rich environement (GUI) Application. Web tool is a threat to them as it is platform independant (not promoting they main product).</p>
<p>Of course the IE team probably had figured something like that but... Microsoft definetly won't invest a lot of money in IE if what they are selling is a Rich application platform.</p>
http://stackoverflow.com/questions/42804/chrome-tabs-and-processes/42895#428950Answer by Blade for Chrome tabs and processesBlade2008-09-04T00:22:29Z2008-09-04T00:22:29Z<p>I've also noticed that tabs browsing the same domain ar grouped in the same process. So if you have 3 tab browsing stackoverflow.com, those three tabs will appread as one process</p>
http://stackoverflow.com/questions/42805/hello-world-what-did-your-first-ever-computer-program-do/42881#428811Answer by Blade for Hello world: what did your first ever computer program do ?Blade2008-09-04T00:05:21Z2008-09-04T00:05:21Z<p>Mine was actualy... compiling. And that's exactly what I was trying to do :)</p>
http://stackoverflow.com/questions/41504/timezone-lookup-from-latitude-longitude/41533#415337Answer by Blade for Timezone lookup from latitude longitudeBlade2008-09-03T12:15:17Z2008-09-03T13:04:55Z<p>Take a look at <a href="http://www.geonames.org/" rel="nofollow">Geonames.org</a></p>
<p>It's a free webservice that allow you to get a lot of informations from a long/lat</p>
<p><a href="http://www.geonames.org/export/client-libraries.html" rel="nofollow">They also provide a free (and open source) Java Client for GeoNames Webservices library (library for other language also provided: ruby, python, perl, lisp...)</a></p>
<p>Here's some info you can get from long/lat: <a href="http://www.geonames.org/export/ws-overview.html" rel="nofollow">(complete list of webservices here)</a></p>
<ul>
<li>Find nearest Address</li>
<li>Find nearest Intersection</li>
<li>Find nearby Streets</li>
<li>Elevation </li>
<li>Timezone</li>
</ul>
http://stackoverflow.com/questions/41118/recommend-a-build-tool-for-a-large-legacy-java-project/41140#411401Answer by Blade for Recommend a build tool for a large legacy Java project.Blade2008-09-03T03:31:58Z2008-09-03T10:57:30Z<p>I recently ported a legacy app using ant/custom script and ended up with something great using maven 2. </p>
<p>You can easily specifiy a custom directory scructure in the maven 2 pom.xml config file (while this is not the recommended way, is still good enough when going from ant to maven).</p>
<p>Also, maven support legacy ant task so you could combine the old legacy config and the nice features of maven.</p>
http://stackoverflow.com/questions/4149/how-do-i-use-java-to-read-from-a-file-that-is-actively-being-written/38133#381332Answer by Blade for How do I use Java to read from a file that is actively being written?Blade2008-09-01T16:31:53Z2008-09-01T16:31:53Z<p>You might also take a look at java channel for locking a part of a file.</p>
<p><a href="http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html" rel="nofollow">http://java.sun.com/javase/6/docs/api/java/nio/channels/FileChannel.html</a></p>
<p>This function of the <code>FileChannel</code> might be a start</p>
<pre><code>lock(long position, long size, boolean shared)
</code></pre>
<p>An invocation of this method will block until the region can be locked</p>
http://stackoverflow.com/questions/41504/timezone-lookup-from-latitude-longitude/41533#41533Comment by Blade on Timezone lookup from latitude longitudeBlade2009-10-08T14:30:24Z2009-10-08T14:30:24Zfor that, the Java Calendar will probably be more usefullhttp://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-movedComment by Blade on How to determine if a file will be logically moved or physically moved.Blade2009-09-21T17:31:29Z2009-09-21T17:31:29ZYou are right, a copy/delete operation might be needed within the same NTFS partiton. But still, my goal was to determine if a copy/delete would be needed or a simple metadata change would do the job to move the file. The accepted solution addresses this problem. If you have other question or others solutions, feel free to contribute. Thxhttp://stackoverflow.com/questions/903754/do-you-still-limit-line-length-in-code/904008#904008Comment by Blade on Do you still limit line length in code?Blade2009-05-24T21:13:46Z2009-05-24T21:13:46Zfor eclipse formatting, add "//" (without ") at end of line to force the formatter to keep these line on code on different linehttp://stackoverflow.com/questions/806659/what-are-the-best-habits-of-highly-effective-programmers/810294#810294Comment by Blade on What are the best habits of highly effective programmers?Blade2009-05-16T22:51:19Z2009-05-16T22:51:19ZHere's a slice of my exeperience with overengineering. Hope it clarify things.http://stackoverflow.com/questions/797687/what-is-a-quad-linked-listComment by Blade on What is a quad linked list?Blade2009-04-29T05:36:26Z2009-04-29T05:36:26Zhow about this: <a href="http://www.codeproject.com/KB/recipes/4-Way_LinkedList.aspx" rel="nofollow">codeproject.com/KB/recipes/…</a>http://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them/426267#426267Comment by Blade on Can I add jars to maven 2 build classpath without installing them?Blade2009-04-19T07:42:23Z2009-04-19T07:42:23Zactually, what he ment is that you dont have to create a pom for the library you are importing into your local repositoryhttp://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them/364188#364188Comment by Blade on Can I add jars to maven 2 build classpath without installing them?Blade2009-04-19T07:40:59Z2009-04-19T07:40:59Zuse a systemPath like this one: "<systemPath>${basedir}/lib/BrowserLauncher2-1_3.jar</systemPath>" ${basedir} is pointing to your project's root.http://stackoverflow.com/questions/598735/should-i-migrate-from-ant-to-maven/598746#598746Comment by Blade on Should I migrate from Ant to Maven?Blade2009-04-19T07:37:54Z2009-04-19T07:37:54Zmuch simpler management"and standardized workflow is the idea behind maven. Also, dependecy management alone is worth migrating.http://stackoverflow.com/questions/97640/force-maven2-to-copy-dependencies-into-target-libComment by Blade on force Maven2 to copy dependencies into target/libBlade2009-04-19T07:35:29Z2009-04-19T07:35:29ZAre you using assemblies ?http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/69058#69058Comment by Blade on What is your single most favorite command-line trick using Bash?Blade2009-04-17T09:27:10Z2009-04-17T09:27:10Zif one fail, the other command wont be executed (fail fast, like in programmation)http://stackoverflow.com/questions/51094/payment-processors-what-do-i-need-to-know-if-i-want-to-accept-credit-cards-on-m/52640#52640Comment by Blade on Payment Processors - What do I need to know if I want to accept credit cards on my website?Blade2009-04-17T08:47:30Z2009-04-17T08:47:30ZOne of the best I've seen.... +1http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/736905#736905Comment by Blade on How to determine if a file will be logically moved or physically moved.Blade2009-04-14T05:11:03Z2009-04-14T05:11:03ZIs it ok for you if I accept my own answer ?http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/737064#737064Comment by Blade on How to determine if a file will be logically moved or physically moved.Blade2009-04-13T18:17:02Z2009-04-13T18:17:02ZActually, I was comparing two files on two differents disks so for my little test, I didin't want to create a new file. But you're right, in the case we are interested in, it would make sense to create the target file at this stage.http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/737064#737064Comment by Blade on How to determine if a file will be logically moved or physically moved.Blade2009-04-12T04:17:30Z2009-04-12T04:17:30ZI got it using CreateFile wich return a file handle. When you call CreateFile, you have to specify that a new file must not be created so it will fail if the file does not exist.http://stackoverflow.com/questions/736859/how-to-determine-if-a-file-will-be-logically-moved-or-physically-moved/736905#736905Comment by Blade on How to determine if a file will be logically moved or physically moved.Blade2009-04-10T07:41:42Z2009-04-10T07:41:42ZOh, I see. I'm currently looking toward JNA (<a href="https://jna.dev.java.net/" rel="nofollow">jna.dev.java.net</a>) for kernel32 and unix API access.