我这样只能把大部分隐藏,但是我的电脑和网上邻居以及IE还是没有隐藏掉
谁有办法
import java.io.File;
import java.io.IOException;
import javax.swing.filechooser.FileSystemView;
public class HiddenIcon {
public static void main(String[] args) {
FileSystemView fsv = FileSystemView.getFileSystemView();
File fileDir = fsv.getHomeDirectory();
File[] files = fileDir.listFiles();
for (int i = 0; i < files.length; i++) {
String sets = "attrib -H \"" + files.getAbsolutePath() + "\"";
try {
Runtime.getRuntime().exec(sets);
} catch (IOException e) {
e.printStackTrace();
}
}
}
} |