I want to Drag and drop my groupwise email directly to my java panel.I can able to drag and drop my groupwise email after placing it on windows explorer(the mail becomes .eml file).
public synchronized void drop(final DropTargetDropEvent dtde)
{
try
{
Transferable tr = dtde.getTransferable();
DataFlavor[] flavors = tr.getTransferDataFlavors();
}
While i try the above code ,there is no Dataflavors. Plz So give me your suggestion.