5,778,647 members and growing! (139 online)
Email Password   helpLost your password?
Desktop Development » List Controls » JList     Intermediate

Drag And Drop between JList and Windows Explorer

By Davanum Srinivas

Pure Java Sample for Drag and Drop between Swing based JList and Windows Explorer
Java, Java, Dev

Posted: 7 Jun 2000
Updated: 1 Jul 2000
Views: 129,916
Bookmarked: 16 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
34 votes for this Article.
Popularity: 6.33 Rating: 4.13 out of 5
3 votes, 27.3%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
1 vote, 9.1%
4
7 votes, 63.6%
5
  • Download source files - 150 Kb

    Sample Image - image1.gif

    Introduction

    Until JDK1.2.2, It was not possible to Drag and Drop a file from Windows Explorer to a Java based Swing/AWT component. Here is some sample code that will show you how to Drag and Drop from a JList control. The code can be very easily used with other components like JTree and JTable.

    To compile the code use "javac ListDemo.java". To run it use "java ListDemo"

    import java.awt.*;
    import java.io.*;
    import java.util.*;
    import java.awt.event.*;
    import java.awt.dnd.*;
    import java.awt.datatransfer.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.tree.*;
    
    public class ListDemo extends JFrame
                          implements ListSelectionListener
    {
        private DroppableList list;
        private JTextField fileName;
    
        public ListDemo()
        {
            super("ListDemo");
    
            //Create the list and put it in a scroll pane
    
            list = new DroppableList();
            DefaultListModel listModel = (DefaultListModel)list.getModel();
            list.setCellRenderer(new CustomCellRenderer());
            list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            list.setSelectedIndex(0);
            list.addListSelectionListener(this);
            JScrollPane listScrollPane = new JScrollPane(list);
    
            String dirName = new String("\\");
            String filelist[] = new File(dirName).list();
            for (int i=0; i < filelist.length ; i++ )
            {
                String thisFileSt = dirName+filelist[i];
                File thisFile = new File(thisFileSt);
                if (thisFile.isDirectory())
                    continue;
                try {
                    listModel.addElement(makeNode(thisFile.getName(),
                                                  thisFile.toURL().toString(),
                                                  thisFile.getAbsolutePath()));
                } catch (java.net.MalformedURLException e){
                }
            }
    
            fileName = new JTextField(50);
            String name = listModel.getElementAt(
                                  list.getSelectedIndex()).toString();
            fileName.setText(name);
    
            //Create a panel that uses FlowLayout (the default).
            JPanel buttonPane = new JPanel();
            buttonPane.add(fileName);
    
            Container contentPane = getContentPane();
            contentPane.add(listScrollPane, BorderLayout.CENTER);
            contentPane.add(buttonPane, BorderLayout.NORTH);
        }
    
        public void valueChanged(ListSelectionEvent e)
        {
            if (e.getValueIsAdjusting() == false)
            {
                fileName.setText("");
                if (list.getSelectedIndex() != -1)
                {
                    String name = list.getSelectedValue().toString();
                    fileName.setText(name);
                }
            }
        }
    
        private static Hashtable makeNode(String name,
            String url, String strPath)
        {
            Hashtable hashtable = new Hashtable();
            hashtable.put("name", name);
            hashtable.put("url", url);
            hashtable.put("path", strPath);
            return hashtable;
        }
    
        public class DroppableList extends JList
            implements DropTargetListener, DragSourceListener, DragGestureListener
        {
            DropTarget dropTarget = new DropTarget (this, this);
            DragSource dragSource = DragSource.getDefaultDragSource();
    
            public DroppableList()
            {
              dragSource.createDefaultDragGestureRecognizer(
                  this, DnDConstants.ACTION_COPY_OR_MOVE, this);
              setModel(new DefaultListModel());
            }
    
            public void dragDropEnd(DragSourceDropEvent DragSourceDropEvent){}
            public void dragEnter(DragSourceDragEvent DragSourceDragEvent){}
            public void dragExit(DragSourceEvent DragSourceEvent){}
            public void dragOver(DragSourceDragEvent DragSourceDragEvent){}
            public void dropActionChanged(DragSourceDragEvent DragSourceDragEvent){}
    
            public void dragEnter (DropTargetDragEvent dropTargetDragEvent)
            {
              dropTargetDragEvent.acceptDrag (DnDConstants.ACTION_COPY_OR_MOVE);
            }
    
            public void dragExit (DropTargetEvent dropTargetEvent) {}
            public void dragOver (DropTargetDragEvent dropTargetDragEvent) {}
            public void dropActionChanged (DropTargetDragEvent dropTargetDragEvent){}
    
            public synchronized void drop (DropTargetDropEvent dropTargetDropEvent)
            {
                try
                {
                    Transferable tr = dropTargetDropEvent.getTransferable();
                    if (tr.isDataFlavorSupported (DataFlavor.javaFileListFlavor))
                    {
                        dropTargetDropEvent.acceptDrop (
                            DnDConstants.ACTION_COPY_OR_MOVE);
                        java.util.List fileList = (java.util.List)
                            tr.getTransferData(DataFlavor.javaFileListFlavor);
                        Iterator iterator = fileList.iterator();
                        while (iterator.hasNext())
                        {
                          File file = (File)iterator.next();
                          Hashtable hashtable = new Hashtable();
                          hashtable.put("name",file.getName());
                          hashtable.put("url",file.toURL().toString());
                          hashtable.put("path",file.getAbsolutePath());
                          ((DefaultListModel)getModel()).addElement(hashtable);
                        }
                        dropTargetDropEvent.getDropTargetContext().dropComplete(true);
                  } else {
                    System.err.println ("Rejected");
                    dropTargetDropEvent.rejectDrop();
                  }
                } catch (IOException io) {
                    io.printStackTrace();
                    dropTargetDropEvent.rejectDrop();
                } catch (UnsupportedFlavorException ufe) {
                    ufe.printStackTrace();
                    dropTargetDropEvent.rejectDrop();
                }
            }
    
            public void dragGestureRecognized(DragGestureEvent dragGestureEvent)
            {
                if (getSelectedIndex() == -1)
                    return;
                Object obj = getSelectedValue();
                if (obj == null) {
                    // Nothing selected, nothing to drag
                    System.out.println ("Nothing selected - beep");
                    getToolkit().beep();
                } else {
                    Hashtable table = (Hashtable)obj;
                    FileSelection transferable =
                      new FileSelection(new File((String)table.get("path")));
                    dragGestureEvent.startDrag(
                      DragSource.DefaultCopyDrop,
                      transferable,
                      this);
                }
            }
        }
    
        public class CustomCellRenderer implements ListCellRenderer
        {
            DefaultListCellRenderer listCellRenderer =
              new DefaultListCellRenderer();
            public Component getListCellRendererComponent(
                JList list, Object value, int index,
                boolean selected, boolean hasFocus)
            {
                listCellRenderer.getListCellRendererComponent(
                  list, value, index, selected, hasFocus);
                listCellRenderer.setText(getValueString(value));
                return listCellRenderer;
            }
            private String getValueString(Object value)
            {
                String returnString = "null";
                if (value != null) {
                  if (value instanceof Hashtable) {
                    Hashtable h = (Hashtable)value;
                    String name = (String)h.get("name");
                    String url = (String)h.get("url");
                    returnString = name + " ==> " + url;
                  } else {
                    returnString = "X: " + value.toString();
                  }
                }
                return returnString;
            }
        }
    
        public class FileSelection extends Vector implements Transferable
        {
            final static int FILE = 0;
            final static int STRING = 1;
            final static int PLAIN = 2;
            DataFlavor flavors[] = {DataFlavor.javaFileListFlavor,
                                    DataFlavor.stringFlavor,
                                    DataFlavor.plainTextFlavor};
            public FileSelection(File file)
            {
                addElement(file);
            }
            /* Returns the array of flavors in which it can provide the data. */
            public synchronized DataFlavor[] getTransferDataFlavors() {
        	return flavors;
            }
            /* Returns whether the requested flavor is supported by this object. */
            public boolean isDataFlavorSupported(DataFlavor flavor) {
                boolean b  = false;
                b |=flavor.equals(flavors[FILE]);
                b |= flavor.equals(flavors[STRING]);
                b |= flavor.equals(flavors[PLAIN]);
            	return (b);
            }
            /**
             * If the data was requested in the "java.lang.String" flavor,
             * return the String representing the selection.
             */
            public synchronized Object getTransferData(DataFlavor flavor)
        			throws UnsupportedFlavorException, IOException {
        	if (flavor.equals(flavors[FILE])) {
        	    return this;
        	} else if (flavor.equals(flavors[PLAIN])) {
        	    return new StringReader(((File)elementAt(0)).getAbsolutePath());
        	} else if (flavor.equals(flavors[STRING])) {
        	    return((File)elementAt(0)).getAbsolutePath();
        	} else {
        	    throw new UnsupportedFlavorException(flavor);
        	}
            }
        }
    
        public static void main(String s[])
        {
            JFrame frame = new ListDemo();
            frame.addWindowListener(new WindowAdapter() {
                public void windowClosing(WindowEvent e) {
                    System.exit(0);
                }
            });
            frame.pack();
            frame.setVisible(true);
        }
    }
    
  • License

    This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

    A list of licenses authors might use can be found here

    About the Author

    Davanum Srinivas



    Location: United States United States

    Other popular List Controls articles:

    Article Top
    Sign Up to vote for this article
    You must Sign In to use this message board.
    FAQ FAQ Noise ToleranceSearch Search Messages 
     Layout  Per page   
     Msgs 1 to 25 of 30 (Total in Forum: 30) (Refresh)FirstPrevNext
    GeneralDrag and drop items between two listboxes in asp.net with c#memberKuricheti19:42 24 Aug '06  
    GeneralVery NicememberHaiJava1:28 27 Sep '05  
    GeneralDnDExceptionsussAnonymous2:00 8 Jun '05  
    GeneralNullPointerExceptionmembershare_dropbin-codeproject15:29 7 Apr '05  
    GeneralRe: NullPointerExceptionmembershare_dropbin-codeproject15:44 7 Apr '05  
    GeneralThank YousussDan Updike8:09 5 Mar '05  
    GeneralWhat about dropping to ExplorersussAnonymous23:18 28 Oct '04  
    GeneralRe: What about dropping to ExplorersussAnonymous2:52 18 Jul '05  
    GeneralException??memberMaggon Sameer18:43 7 Feb '04  
    GeneralRe: Exception??sussAnonymous23:54 10 Mar '04  
    GeneralRe: Exception??sussAnonymous23:39 25 Mar '04  
    GeneralRe: Exception??membersuperbeppe8:55 28 Apr '04  
    GeneralRe: Exception?? with java 1.5memberchenid011:30 9 Aug '04  
    GeneralRe: Exception?? with java 1.5susssinai022:18 7 Oct '04  
    GeneralRe: Exception?? with java 1.5memberchenid06:49 8 Oct '04  
    Generaljava projectssussAnonymous23:41 22 Dec '03  
    GeneralVery nice..sussImran Ebrahim13:26 11 Jul '03  
    GeneralWell done budmemberBarry Sahu21:55 8 Jul '03  
    GeneralWell Donememberconsijp5:26 26 Apr '03  
    GeneralReal Coolmemberstarlight_beta1:46 11 Dec '02  
    GeneralNull pointer Exceptionsussrmedina4:01 24 Oct '02  
    GeneralRe: Null pointer Exceptionmemberconsijp5:24 26 Apr '03  
    GeneralRe: Null pointer Exceptionmemberhoulingang18:11 10 Jul '03  
    GeneralRe: Null pointer ExceptionsussImran Ebrahim13:24 11 Jul '03  
    GeneralDrag and Drop between JList and Windows Explorermemberguptha k0:13 3 May '02  

    General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

    PermaLink | Privacy | Terms of Use
    Last Updated: 1 Jul 2000
    Editor: Chris Maunder
    Copyright 2000 by Davanum Srinivas
    Everything else Copyright © CodeProject, 1999-2009
    Java | Advertise on the Code Project