Java JTree Node export(File file, DefaultMutableTreeNode node)

Here you can find the source of export(File file, DefaultMutableTreeNode node)

Description

export

License

Open Source License

Declaration

public static void export(File file, DefaultMutableTreeNode node) throws FileNotFoundException 

Method Source Code


//package com.java2s;
/*/*from  w ww  .j  a va 2  s . c o m*/
 * PicKing, a file picker.
 * Copyright (C) 2009  Wei-Cheng Pan <legnaleurc@gmail.com>
 *
 * This file is part of PicKing.
 *
 * PicKing is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * PicKing is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintStream;
import java.util.Enumeration;
import javax.swing.tree.DefaultMutableTreeNode;

public class Main {
    public static void export(File file, DefaultMutableTreeNode node) throws FileNotFoundException {
        PrintStream fout = new PrintStream(file);
        fout.println("#! /bin/sh\n");
        for (Enumeration<?> e = node.children(); e.hasMoreElements();) {
            DefaultMutableTreeNode child = (DefaultMutableTreeNode) e.nextElement();
            File sm = (File) child.getUserObject();
            fout.printf("rm -rf '%s'\n", sm.getAbsolutePath());
        }
        fout.print("\nrm -rf $0\n");
        fout.close();
        file.setExecutable(true);
    }
}

Related

  1. expandAll(JTree tree, DefaultMutableTreeNode treeNode)
  2. expandEntireTree(JTree tree, DefaultMutableTreeNode root, boolean expandRoot)
  3. expandPathsAfterChange(JTree tree, Hashtable state, DefaultMutableTreeNode root)
  4. expandTree(final JTree tree, final DefaultMutableTreeNode node)
  5. expandTreeRecurser(JTree tree, DefaultMutableTreeNode node)
  6. findFirstTreeNodeMatchUserObject(DefaultMutableTreeNode treeNode, Object userObject)
  7. findTreeNodesWithLowestLevel(List multipleTreeNodes)
  8. findTreeNodeWithXmlPath(DefaultMutableTreeNode treeNode, String nodeXmlPath)
  9. getAllChildCount(TreeNode node)