Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the initialization of Netbeans JTree

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article mainly introduces the relevant knowledge of how to realize the initialization of Netbeans JTree, the content is detailed and easy to understand, the operation is simple and fast, and has a certain reference value. I believe you will gain something after reading this article on how to initialize Netbeans JTree. Let's take a look.

In Netbeans JTree, the originally generated JTree is a fake tree. You can write the initialization function of JTree, and then call it after the window is initialized:

Public void treeInitialize () {DefaultMutableTreeNode root=new DefaultMutableTreeNode ("root"); try {m_DBMetaData = m_connection.getMetaData (); m_tabReset = m_DBMetaData.getTables (null, "%", "%", new String [] {"TABLES"}) While (m_tabReset.next ()) {DefaultMutableTreeNode t_newNode = new DefaultMutableTreeNode (m_tabReset.getString ("TABLE_NAME")); root.add (t_newNode);} TreeModel treeModel = new DefaultTreeModel (root); jDBTree.setModel (treeModel) } catch (SQLException e) {JOptionPane.showMessageDialog (this, "database access error"); System.exit (1);}}

This program fetches the table name from the database as the leaf node of JTree.

The response of the JTree leaf node double-click event and the acquisition of its Text:

Add MouseClicked event

Private void jDBTreeMouseClicked (java.awt.event.MouseEvent evt) {/ / TODO will add your processing code here: DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode) jDBTree.getLastSelectedPathComponent (); / / get the mouse click point if (selectedNode = = null) {return / / if it is not a node on the tree} if (selectedNode.isLeaf () & & evt.getClickCount () = = 2) {/ / make sure it is a leaf node and a double / / click event. ViewTable (selectedNode.toString ()); / / the parameter is the Text of the node. }} this is the end of the article on "how to initialize Netbeans JTree". Thank you for reading! I believe that everyone has a certain understanding of the knowledge of "how to realize the initialization of Netbeans JTree". If you want to learn more, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report