Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8895981
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T23:55:31+00:00 2026-06-14T23:55:31+00:00

I want to implement dragging and dropping of files from a directory such as

  • 0

I want to implement dragging and dropping of files from a directory such as someones hard drive but can’t figure out how to do it. I’ve read the java api but it talks of color pickers and dragging and dropping between lists but how to drag files from a computers file system and drop into my application. I tried writing the transferhandler class and a mouse event for when the drag starts but nothing seems to work. Now I’m back to just having my JFileChooser set so drag has been enabled but how to drop?

Any info or point in the right direction greatly appreciated.

  import javax.swing.*;

  import java.awt.BorderLayout;
 import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;

import javax.swing.BorderFactory;
import javax.swing.DefaultListModel;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFileChooser;
import javax.swing.JFrame;

import javax.swing.JLabel;
import javax.swing.JList;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.SwingUtilities;
import javax.swing.filechooser.FileFilter;

 public class FileChooserDemo
 extends JPanel
 implements ActionListener 
  {

JLabel selectedFileLabel;
 JList selectedFilesList;
 JLabel returnCodeLabel;

 public FileChooserDemo() 
    {
 super();
 createContent();
 }


void initFrameContent() 
    {
        JPanel closePanel = new JPanel();
        add(closePanel, BorderLayout.SOUTH);
}


 private void createContent()
    {
 setLayout(new BorderLayout());

        JPanel NorthPanel = new JPanel();

     JMenuBar menuBar = new JMenuBar();
        JMenu menu = new JMenu("File");
        JMenuItem quit = new JMenuItem("Quit");

        menuBar.add(menu);
        menu.add(quit);

        NorthPanel.add(menu,BorderLayout.NORTH);


  JPanel buttonPanel = new JPanel(new GridLayout(7,1 ));
  JButton openButton = new JButton("Open...");
  openButton.setActionCommand("OPEN");
  openButton.addActionListener(this);
 buttonPanel.add(openButton);

 JButton saveButton = new JButton("Save...");
 saveButton.setActionCommand("SAVE");
 saveButton.addActionListener(this);
 buttonPanel.add(saveButton);




  JButton delete = new JButton("Delete");
  delete.addActionListener(this);
  delete.setActionCommand("DELETE");
  buttonPanel.add(delete);

 add(buttonPanel, BorderLayout.WEST);



 // create a panel to display the selected file(s) and the return code
 JPanel displayPanel = new JPanel(new BorderLayout()); 
 selectedFileLabel = new JLabel("-");

 selectedFileLabel.setBorder(BorderFactory.createTitledBorder
 ("Selected File/Directory   "));

 displayPanel.add(selectedFileLabel, BorderLayout.NORTH);

 selectedFilesList = new JList();
 JScrollPane sp = new JScrollPane(selectedFilesList);
 sp.setBorder(BorderFactory.createTitledBorder("Selected Files "));
 MouseListener listener = new MouseAdapter()
 {
   public void mousePressed(MouseEvent me)
   {
       JComponent comp = (JComponent) me.getSource();
       TransferHandler handler = comp.getTransferHandler();
       handler.exportAsDrag(comp, me, TransferHandler.MOVE);   
   }
 };
 selectedFilesList.addMouseListener(listener);

 displayPanel.add(sp);

 returnCodeLabel = new JLabel("");
 returnCodeLabel.setBorder(BorderFactory.createTitledBorder("Return Code"));
 displayPanel.add(returnCodeLabel, BorderLayout.SOUTH);

 add(displayPanel);
}


 public void actionPerformed(ActionEvent e)
    {
          int option = 0;
 File selectedFile = null;
 File[] selectedFiles = new File[0];

 if (e.getActionCommand().equals("CLOSE"))
      {
   System.exit(0);
 }
 else if (e.getActionCommand().equals("OPEN"))
        {
     JFileChooser chooser = new JFileChooser();
        chooser.setDragEnabled(true);
        chooser.setMultiSelectionEnabled(true);
     option = chooser.showOpenDialog(this);
     selectedFiles = chooser.getSelectedFiles();
   }
 else if (e.getActionCommand().equals("SAVE"))
        {
     JFileChooser chooser = new JFileChooser();
     option = chooser.showSaveDialog(this);
     selectedFiles = chooser.getSelectedFiles();
   }

 // display the selection and return code
 if (selectedFile != null)
   selectedFileLabel.setText(selectedFile.toString());
 else
   selectedFileLabel.setText("null");
 DefaultListModel listModel = new DefaultListModel();
 for (int i =0; i < selectedFiles.length; i++)
   listModel.addElement(selectedFiles[i]);

 selectedFilesList.setModel(listModel);
 returnCodeLabel.setText(Integer.toString(option));
 }

 public static void main(String[] args) 
    {
 SwingUtilities.invokeLater
 (new Runnable()
       {
    public void run()
         {
      FileChooserDemo app = new FileChooserDemo();
      app.initFrameContent();
      JFrame frame = new JFrame("LoquetUP");
      frame.getContentPane().add(app);
         frame.setDefaultCloseOperation(3);
         frame.setSize(600,400);
         frame.setResizable(false);
         frame.setLocationRelativeTo(null);

      //frame.pack();
      frame.setVisible(true);
    }
  });
 }

}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T23:55:32+00:00Added an answer on June 14, 2026 at 11:55 pm

    This is my take on the idea. I’ve used the “traditional” drag and drop API in this example. It has some extra “paint” tweaks just to show off what you might be able to do.

    enter image description hereenter image description here

    This example doesn’t scan folders dropped onto it, so any folder will only register as a single file, but I’m sure you can work it out

    public class TestDragNDropFiles {
    
        public static void main(String[] args) {
            new TestDragNDropFiles();
        }
    
        public TestDragNDropFiles() {
            EventQueue.invokeLater(new Runnable() {
                @Override
                public void run() {
                    try {
                        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                    } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    }
    
                    JFrame frame = new JFrame("Testing");
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setLayout(new BorderLayout());
                    frame.add(new DropPane());
                    frame.pack();
                    frame.setLocationRelativeTo(null);
                    frame.setVisible(true);
                }
            });
        }
    
        public class DropPane extends JPanel {
    
            private DropTarget dropTarget;
            private DropTargetHandler dropTargetHandler;
            private Point dragPoint;
    
            private boolean dragOver = false;
            private BufferedImage target;
    
            private JLabel message;
    
            public DropPane() {
                try {
                    target = ImageIO.read(new File("target.png"));
                } catch (IOException ex) {
                    ex.printStackTrace();
                }
    
                setLayout(new GridBagLayout());
                message = new JLabel();
                message.setFont(message.getFont().deriveFont(Font.BOLD, 24));
                add(message);
    
            }
    
            @Override
            public Dimension getPreferredSize() {
                return new Dimension(400, 400);
            }
    
            protected DropTarget getMyDropTarget() {
                if (dropTarget == null) {
                    dropTarget = new DropTarget(this, DnDConstants.ACTION_COPY_OR_MOVE, null);
                }
                return dropTarget;
            }
    
            protected DropTargetHandler getDropTargetHandler() {
                if (dropTargetHandler == null) {
                    dropTargetHandler = new DropTargetHandler();
                }
                return dropTargetHandler;
            }
    
            @Override
            public void addNotify() {
                super.addNotify();
                try {
                    getMyDropTarget().addDropTargetListener(getDropTargetHandler());
                } catch (TooManyListenersException ex) {
                    ex.printStackTrace();
                }
            }
    
            @Override
            public void removeNotify() {
                super.removeNotify();
                getMyDropTarget().removeDropTargetListener(getDropTargetHandler());
            }
    
            @Override
            protected void paintComponent(Graphics g) {
                super.paintComponent(g);
                if (dragOver) {
                    Graphics2D g2d = (Graphics2D) g.create();
                    g2d.setColor(new Color(0, 255, 0, 64));
                    g2d.fill(new Rectangle(getWidth(), getHeight()));
                    if (dragPoint != null && target != null) {
                        int x = dragPoint.x - 12;
                        int y = dragPoint.y - 12;
                        g2d.drawImage(target, x, y, this);
                    }
                    g2d.dispose();
                }
            }
    
            protected void importFiles(final List files) {
                Runnable run = new Runnable() {
                    @Override
                    public void run() {
                        message.setText("You dropped " + files.size() + " files");
                    }
                };
                SwingUtilities.invokeLater(run);
            }
    
            protected class DropTargetHandler implements DropTargetListener {
    
                protected void processDrag(DropTargetDragEvent dtde) {
                    if (dtde.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) {
                        dtde.acceptDrag(DnDConstants.ACTION_COPY);
                    } else {
                        dtde.rejectDrag();
                    }
                }
    
                @Override
                public void dragEnter(DropTargetDragEvent dtde) {
                    processDrag(dtde);
                    SwingUtilities.invokeLater(new DragUpdate(true, dtde.getLocation()));
                    repaint();
                }
    
                @Override
                public void dragOver(DropTargetDragEvent dtde) {
                    processDrag(dtde);
                    SwingUtilities.invokeLater(new DragUpdate(true, dtde.getLocation()));
                    repaint();
                }
    
                @Override
                public void dropActionChanged(DropTargetDragEvent dtde) {
                }
    
                @Override
                public void dragExit(DropTargetEvent dte) {
                    SwingUtilities.invokeLater(new DragUpdate(false, null));
                    repaint();
                }
    
                @Override
                public void drop(DropTargetDropEvent dtde) {
    
                    SwingUtilities.invokeLater(new DragUpdate(false, null));
    
                    Transferable transferable = dtde.getTransferable();
                    if (dtde.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) {
                        dtde.acceptDrop(dtde.getDropAction());
                        try {
    
                            List transferData = (List) transferable.getTransferData(DataFlavor.javaFileListFlavor);
                            if (transferData != null && transferData.size() > 0) {
                                importFiles(transferData);
                                dtde.dropComplete(true);
                            }
    
                        } catch (Exception ex) {
                            ex.printStackTrace();
                        }
                    } else {
                        dtde.rejectDrop();
                    }
                }
            }
    
            public class DragUpdate implements Runnable {
    
                private boolean dragOver;
                private Point dragPoint;
    
                public DragUpdate(boolean dragOver, Point dragPoint) {
                    this.dragOver = dragOver;
                    this.dragPoint = dragPoint;
                }
    
                @Override
                public void run() {
                    DropPane.this.dragOver = dragOver;
                    DropPane.this.dragPoint = dragPoint;
                    DropPane.this.repaint();
                }
            }
    
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to figure out how to implement drag and drop from within a
I want to implement DnD on my system by dragging a node from a
I want implement in my software solution an VBA editor but in c# 3.0.
I started trying to implement drag-and-drop of virtual files (from a C# 4/WPF app)
I want implement forward geocoding in my app. But I am not able to
I want implement a program that can do a a Vision-based Page Segmentation. I
I want to implement such a functionality that while in mousedown the cursor crosses
I have an NSImageView subclass that I use for dragging and dropping Files onto
I want to implement dragging of an image within a canvas. I want simplest
i starter in jqgrid, i want implement inline edit in jqgrid i have this

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.