I do work in computer forensics and am trying to move my codebase from C++ to Java. I need a good open source implementation of all the various filesystems in Java to help this effort. Does anyone know of such an implementation?
|
closed as not constructive by Will♦ Apr 8 at 2:21
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
There are the file system implementations of the JNode project. |
|||||||
|
|
This may be somewhat tangential to your need, but take a look at Fuse-J. It provides Java based bindings for Fuse. [1] http://sourceforge.net/projects/fuse-j/ |
|||
|
|
I'm doing a project on a java based file recovery tool for fat16/32. If you've found a good FAT package for java I'd love to take a look. |
|||||||||
|
|
The Sleuth Kit master branch on github has Java bindings for the C/C++ code. It uses JNI/C++ code to populate a SQLite database with the file and file system metadata and then there is Java code that can query the database and create corresponding objects. It uses JNI to read file content. It's not a pure Java implementation, but it allows you to more easily write Java programs. As a previous poster mentioned, this is how Autopsy 3 (which is written in Java) gets the file system data. |
|||
|
|
|
The Sleuth Kit has a Windows edition written in Java (Autopsy)... http://www.sleuthkit.org/autopsy/download.php Not sure if the file system functionality is actually in Java or if it's in C/C++, though. |
|||
|
|