En JAVA ajouter une branche a un arbre

Fermé
flo.774 Messages postés 5 Date d'inscription mardi 5 août 2008 Statut Membre Dernière intervention 7 août 2008 - 5 août 2008 à 19:12
sandul Messages postés 3927 Date d'inscription jeudi 22 mai 2008 Statut Membre Dernière intervention 8 octobre 2010 - 6 août 2008 à 08:05
bonjour chere collegue du java.

Le but de mon programme est d'avoir une interface graphique qui me permettra de creer directement un arbre dynamique.

Pour l'instant dans mon avancement j'ai seulement créer l'arbre statiquement et je n'arrive pas a rajouter un bouton sur la frame avec du code derriere pour pouvoir ajouter ou supprimer une branche à l'endroit du curseur.


package organigramme;

/* Demonstrate a tree events
*/

import java.awt.*;
import javax.swing.JOptionPane;
import javax.swing.*;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Font;


import javax.swing.JFrame;
import javax.swing.JLabel;




class TreeEventDemo //extends JFrame implements ActionListener
{
JLabel jlab;

TreeEventDemo()
{
// Create a new JFrame container
JFrame jfrm = new JFrame("arbre");





// Use the default border layout manager

// give the frame an initial size
jfrm.setSize(200, 200);

// terminate program when the user closes the application
jfrm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

// create a label that will display the tree selection
jlab = new JLabel();






/* Begin creating the tree be defining the
* structure and realtionship of its nodes*/

// First, create the root node of the ttree
DefaultMutableTreeNode root = new DefaultMutableTreeNode("racine");

/* Next, create twoo subtrees. One contains fruit.
* The other vegetables.*/

// Create the root of the Fruit subtree
DefaultMutableTreeNode fruit = new DefaultMutableTreeNode("1");
root.add(fruit); // add the Fruit node to the tree

/* The Fruit subtree has two subtrees on its own.
* The first is Apples, the second is Pears.*/

// Create an Apples subtree
DefaultMutableTreeNode apples = new DefaultMutableTreeNode("1.1");
fruit.add(apples);

/* Populate the Apples subtree by adding
* apple varieties to the Apples subtree*/
apples.add(new DefaultMutableTreeNode("1.1.1"));
apples.add(new DefaultMutableTreeNode("1.1.2"));

//Create a Pears subtree
DefaultMutableTreeNode pears = new DefaultMutableTreeNode("1.2");
fruit.add(pears);

// Populate the Pears subtree
pears.add(new DefaultMutableTreeNode("1.2.1"));

// Create the root of the Vegetables subtree
DefaultMutableTreeNode veg = new DefaultMutableTreeNode("2");
root.add(veg);

// Populate Vegetables
veg.add(new DefaultMutableTreeNode("2.1"));
veg.add(new DefaultMutableTreeNode("2.2"));
veg.add(new DefaultMutableTreeNode("2.3"));
veg.add(new DefaultMutableTreeNode("2.4"));

/* Now, create a JTree that uses the structure
* defined by the preceding statements*/
JTree jtree = new JTree(root);

// Allow the tree to be edited so that model events can be generated
jtree.setEditable(true);

//Set the tree selection mode to single selection
TreeSelectionModel tsm = jtree.getSelectionModel();
tsm.setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);

// Finally, wrap the tree in scroll pane
JScrollPane jscrlp = new JScrollPane(jtree);

// Listen for tree expansion events
jtree.addTreeExpansionListener(new TreeExpansionListener()
{
public void treeExpanded(TreeExpansionEvent tse)
{
// Get the path to the expansion point
TreePath tp = tse.getPath();

// Display the node
jlab.setText("Expansion: " + tp.getLastPathComponent() );
}

public void treeCollapsed(TreeExpansionEvent tse)
{
// Get the path to the expansion point
TreePath tp = tse.getPath();

// Display the node
jlab.setText("Collapse: " + tp.getLastPathComponent() );
}
});

// Listen for tree selection events
jtree.addTreeSelectionListener(new TreeSelectionListener()
{
public void valueChanged(TreeSelectionEvent tse)
{
// Get the path to the selection
TreePath tp = tse.getPath();

//Display the selected node
jlab.setText("Selection event: " +tp.getLastPathComponent() );
}
});

// Listen for tree model events.Notice that the listener is registered with tree model
jtree.getModel().addTreeModelListener(new TreeModelListener()
{
public void treeNodesChanged(TreeModelEvent tse)
{
// Get the path to the change
TreePath tp = tse.getTreePath();

// Display the Path
jlab.setText("Model change path: " + tp);
}

/* Empty implementations of the remaining TreeModelEvent
* methods. Implement these if your application
* needs to handle these actions*/
public void treeNodesInserted(TreeModelEvent tse){}
public void treeNodesRemoved(TreeModelEvent tse){}
public void treeStructureChanged(TreeModelEvent tse){}
});

// Add the tree and label to the content pane
jfrm.getContentPane().add(jscrlp, BorderLayout.CENTER);
jfrm.getContentPane().add(jlab, BorderLayout.SOUTH);

// Display the frame
jfrm.setVisible(true);
}



public static void main(String[] args)
{
SwingUtilities.invokeLater(new Runnable()
{
public void run()
{
new TreeEventDemo();

}
});
}
}
A voir également:

3 réponses

sandul Messages postés 3927 Date d'inscription jeudi 22 mai 2008 Statut Membre Dernière intervention 8 octobre 2010 723
5 août 2008 à 19:17
Salut,

Tuto correct sur le site de Sun: http://www.apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JTree.html
++
0
flo.774 Messages postés 5 Date d'inscription mardi 5 août 2008 Statut Membre Dernière intervention 7 août 2008
5 août 2008 à 19:32
merci sandul de ta reponse mais je n'ai pas trouve ce que je cherche dessus cela m'aidera pour autre chose .

Moi il me faut le code d'un bouton qui se trouve sur une frame avec comme code derriere l'ajout d'une branche sur un arbre.
0
sandul Messages postés 3927 Date d'inscription jeudi 22 mai 2008 Statut Membre Dernière intervention 8 octobre 2010 723
5 août 2008 à 19:58
Bueno, tu as sur le lien l'essentiel dont tu as besoin pour travailler avec des JTree. Tit exemple fait à la va-vite pour un rajout dynamique (il faut sélectionner un node autre que le Root):
**********
import java.awt.BorderLayout;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextField;
import javax.swing.JTree;
import javax.swing.tree.DefaultMutableTreeNode;

public class Flo774Sample extends JFrame {
	private static final long serialVersionUID = 1L;
	private JTextField textField;
	private JTree tree;

	/**
	 * Launch the application
	 * 
	 * @param args
	 */
	public static void main(String args[]) {
		try {
			Flo774Sample frame = new Flo774Sample();
			frame.setVisible(true);
		} catch (Exception e) {
			e.printStackTrace();
		}
	}

	/**
	 * Create the frame
	 */
	public Flo774Sample() {
		super();
		setBounds(100, 100, 500, 375);
		setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

		final JScrollPane scrollPane = new JScrollPane();
		getContentPane().add(scrollPane, BorderLayout.CENTER);

		DefaultMutableTreeNode root = new DefaultMutableTreeNode("Root");
		DefaultMutableTreeNode child1 = new DefaultMutableTreeNode("Flo 774");
		root.add(child1);
		DefaultMutableTreeNode child2 = new DefaultMutableTreeNode("Flo 775");
		root.add(child2);
		tree = new JTree(root);
		scrollPane.setViewportView(tree);

		final JPanel panel = new JPanel();
		final FlowLayout flowLayout = new FlowLayout();
		flowLayout.setAlignment(FlowLayout.RIGHT);
		panel.setLayout(flowLayout);
		getContentPane().add(panel, BorderLayout.SOUTH);

		textField = new JTextField();
		textField.setColumns(20);
		panel.add(textField);

		final JButton addANodeButton = new JButton();
		addANodeButton.addActionListener(new ActionListener() {

			@Override
			public void actionPerformed(ActionEvent e) {
				DefaultMutableTreeNode node = new DefaultMutableTreeNode(getTextField().getText());
				if (getTree().getLastSelectedPathComponent() != null) {
					((DefaultMutableTreeNode) getTree().getLastSelectedPathComponent()).add(node);
					getTree().repaint();
				}
			}
		});

		addANodeButton.setText("Add a node");
		panel.add(addANodeButton);
		//
	}

	protected JTree getTree() {
		return tree;
	}

	protected JTextField getTextField() {
		return textField;
	}

}

Enjoy.
0
flo.774 Messages postés 5 Date d'inscription mardi 5 août 2008 Statut Membre Dernière intervention 7 août 2008
5 août 2008 à 23:25
merci ca marche parfaitement et si je veux rajouter un autre bouton supprimer une branche a cote de l'ajout ?
0
sandul Messages postés 3927 Date d'inscription jeudi 22 mai 2008 Statut Membre Dernière intervention 8 octobre 2010 723
6 août 2008 à 08:05
Pour faire la suppression du noeud sélectionné (avec touts ses fils), on pourrait utiliser un truc de ce genre:
		final JButton removeANodeButton = new JButton();
		removeANodeButton.addActionListener(new ActionListener() {
			@Override
			public void actionPerformed(ActionEvent e) {
				if (getTree().getLastSelectedPathComponent() != null) {
					DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) getTree().getLastSelectedPathComponent();
					DefaultTreeModel model = (DefaultTreeModel)getTree().getModel();
					model.removeNodeFromParent(selectedNode);
				}
			}
		});
		removeANodeButton.setText("Remove selected node");
		panel.add(removeANodeButton);


Ceci ne marche pas pour le noeud Root, pour lequel il faut un
model.setRoot(null);
0