This application is basically a simple simulation of 'how' the windows FAT32 works. How FAT32 organizes it's clusters, files, and directories and to simulate how does cluster fragmentation happen and how it can be resorted. This app has a basic DOS-like interface and designed to mimic some of the DOS commands like DIR, DEL, MD, etc. Please note that this application is currently on it's early beta-testing stage, so there are really not many options available. However, this application are disk-safe, means that it'll write and read nothing from your hard drive (except from the application itself). I made this app for pure educational purposes only.
File List:
FATSimulator
last update/
FATSimulator
last update/ChangeLog.txt
FATSimulator
last update/FATSimulator/
FATSimulator
last update/FATSimulator/FATSimulator.jcp
FATSimulator
last update/FATSimulator/FATSimulator.jcu
FATSimulator
last update/FATSimulator/FATSimulator.jcw
FATSimulator
last update/FATSimulator/classes/
FATSimulator
last update/FATSimulator/classes/FATSimulator$1.class
FATSimulator
last update/FATSimulator/classes/FATSimulator$2.class
FATSimulator
last update/FATSimulator/classes/FATSimulator.class
FATSimulator
last update/FATSimulator/classes/ThreadMaster.class
FATSimulator
last update/FATSimulator/classes/bin/
FATSimulator
last update/FATSimulator/classes/bin/ChatClient.class
FATSimulator
last update/FATSimulator/classes/bin/ChatServer.class
FATSimulator
last update/FATSimulator/classes/bin/ChatServerThread.class
FATSimulator
last update/FATSimulator/classes/bin/Cluster.class
FATSimulator
last update/FATSimulator/classes/bin/Constants.class
FATSimulator
last update/FATSimulator/classes/bin/Directories.class
FATSimulator
last update/FATSimulator/classes/bin/FATStruct.class
FATSimulator
last update/FATSimulator/classes/bin/Partition.class
FATSimulator
last update/FATSimulator/classes/bin/extension/
FATSimulator
last update/FATSimulator/classes/bin/extension/Animate.class
FATSimulator
last update/FATSimulator/classes/bin/extension/FileDirListParameters.class
FATSimulator
last update/FATSimulator/classes/bin/extension/RecycleBin.class
FATSimulator
last update/FATSimulator/classes/bin/extension/VariantTools.class
FATSimulator
last update/FATSimulator/classes/lib/
FATSimulator
last update/FATSimulator/classes/lib/Help.class
FATSimulator
last update/FATSimulator/classes/lib/SysMsg.class
FATSimulator
last update/FATSimulator/src/
FATSimulator
last update/FATSimulator/src/FATSimulator.java
FATSimulator
last update/FATSimulator/src/bin/
FATSimulator
last update/FATSimulator/src/bin/Cluster.java
FATSimulator
last update/FATSimulator/src/bin/Constants.java
FATSimulator
last update/FATSimulator/src/bin/Directories.java
FATSimulator
last update/FATSimulator/src/bin/Partition.java
FATSimulator
last update/FATSimulator/src/bin/extension/
FATSimulator
last update/FATSimulator/src/bin/extension/Animate.java
FATSimulator
last update/FATSimulator/src/bin/extension/FileDirListParameters.java
FATSimulator
last update/FATSimulator/src/bin/extension/VariantTools.java
FATSimulator
last update/FATSimulator/src/lib/
FATSimulator
last update/FATSimulator/src/lib/Help.java
FATSimulator
last update/FATSimulator/src/lib/SysMsg.java
FATSimulator
last update/FATSimulator/src_fatsimulator.txt
Similar code
Linked Tree
(Popularity: ) : Implementation of a Tree. Nodes are classes with references to the parent, an object contained and a linkedlist storing the children of the nodes. Several ways of traversing the tree are offered. Binary Trees Simple String Example
(Popularity: ) : A very simple binary tree's example i made while trying to get the hang of it all. Shows how to add a String to the binary tree using an iterative and recursive method :)
Building and searching a binary tree
(Popularity: ) : This a a binary tree build from scratch. Input from the keyboard are storet in it, and suggestions, already in the tree, appears when writing. Priority Queue in Java
(Popularity: ) : Implementation and short usage example of using Priority Queue in Java. Written as an exercise of Algorithmical Programming 1 course in Bar-Ilan Univercity, ISRAEL. Feel free to use it. Expression Evaluating Calculator
(Popularity: ) : It evaluates the normal infix form expression " ((101+2)*137)%3+(5*(6+7/2)) " Using ArrayList
(Popularity: ) : Shows beginners how to use Array List of Java.Util Package. Dynamicity is not shown,but altering the list is shown user-actively. EnumSuper 'family' of type-safe enumerations
(Popularity: ) : Java is missing the type-safe "enum" capability of C++ and Pascal. This software implements a reasonable, practical approach for an application to declare/define a "family" of typesafe enums, such as Color, Gender, Progress, etc. List Creator (SMSCs)
(Popularity: ) : You type in a String such as. 4x Where ever theres a pronumeral instead of a number, all possible combinations are found. For the above example 4x would give you 40, 41, 42, 43, 44, 45, 46, 47, 48 and ...