I have a file that user downloads and then I execute a command within java to hide the file:
Runtime.getRuntime().exec(\"attrib +H myFile.txt\");
Unhide the file first:
Runtime.getRuntime().exec("attrib -H myFile.txt"); ^