tags:

views:

357

answers:

2

I'm looking for a library or toolkit (so I don't have to write it) that will allow me to do common things like the following in Linux:

  • Get the uid for a username.
  • Get user / group membership information.
  • Get information about free space on disk drives.
  • Any other potentially useful API calls that are not normally available in Java because they break portability.

Anyone out there have any ideas?

+3  A: 

POSIX for Java sounds like a good place to start, at least. Remember that most of those things you listed are not "Linux", they are just plain old POSIX.

unwind
+2  A: 

Not a wrapper for any specific library, but the JNA (Java Native Access) "provides Java programs easy access to native shared libraries (DLLs on Windows) without writing anything but Java code"

No JNI or native code is required. This functionality is comparable to Windows' Platform/Invoke and Python's ctypes. Access is dynamic at runtime without code generation.

JNA allows you to call directly into native functions using natural Java method invocation. The Java call looks just like it does in native code. Most calls require no special handling or configuration; no boilerplate or generated code is required.

The JNA library uses a small native library stub to dynamically invoke native code. The developer uses a Java interface to describe functions and structures in the target native library. This makes it quite easy to take advantage of native platform features without incurring the high overhead of configuring and building JNI code for multiple platforms.

Using JNA, you should be able to call the Linux API directly (same as you would from C).

Thilo