编辑器拖拽目标3 : 拖放 « 图形用户界面 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 图形用户界面 » 拖放屏幕截图 
编辑器拖拽目标3
编辑器拖拽目标3
 
/*
Core SWING Advanced Programming 
By Kim Topley
ISBN: 0 13 083292 8       
Publisher: Prentice Hall  
*/


import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Point;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.awt.dnd.DnDConstants;
import java.awt.dnd.DropTarget;
import java.awt.dnd.DropTargetDragEvent;
import java.awt.dnd.DropTargetDropEvent;
import java.awt.dnd.DropTargetEvent;
import java.awt.dnd.DropTargetListener;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.beans.PropertyChangeEvent;
import java.beans.PropertyChangeListener;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.List;

import javax.swing.JCheckBox;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.UIManager;

public class EditorDropTarget3 implements DropTargetListener,
    PropertyChangeListener {
  public EditorDropTarget3(JEditorPane pane) {
    this.pane = pane;

    // Listen for changes in the enabled property
    pane.addPropertyChangeListener(this);

    // Save the JEditorPane's background color
    backgroundColor = pane.getBackground();

    // Create the DropTarget and register
    // it with the JEditorPane.
    dropTarget = new DropTarget(pane, DnDConstants.ACTION_COPY_OR_MOVE,
        this, pane.isEnabled()null);
  }

  // Implementation of the DropTargetListener interface
  public void dragEnter(DropTargetDragEvent dtde) {
    DnDUtils.debugPrintln("dragEnter, drop action = "
        + DnDUtils.showActions(dtde.getDropAction()));

    // Get the type of object being transferred and determine
    // whether it is appropriate.
    checkTransferType(dtde);

    // Accept or reject the drag.
    boolean acceptedDrag = acceptOrRejectDrag(dtde);

    // Do drag-under feedback
    dragUnderFeedback(dtde, acceptedDrag);
  }

  public void dragExit(DropTargetEvent dte) {
    DnDUtils.debugPrintln("DropTarget dragExit");

    // Do drag-under feedback
    dragUnderFeedback(null, false);
  }

  public void dragOver(DropTargetDragEvent dtde) {
    DnDUtils.debugPrintln("DropTarget dragOver, drop action = "
        + DnDUtils.showActions(dtde.getDropAction()));

    // Accept or reject the drag
    boolean acceptedDrag = acceptOrRejectDrag(dtde);

    // Do drag-under feedback
    dragUnderFeedback(dtde, acceptedDrag);
  }

  public void dropActionChanged(DropTargetDragEvent dtde) {
    DnDUtils.debugPrintln("DropTarget dropActionChanged, drop action = "
        + DnDUtils.showActions(dtde.getDropAction()));

    // Accept or reject the drag
    boolean acceptedDrag = acceptOrRejectDrag(dtde);

    // Do drag-under feedback
    dragUnderFeedback(dtde, acceptedDrag);
  }

  public void drop(DropTargetDropEvent dtde) {
    DnDUtils.debugPrintln("DropTarget drop, drop action = "
        + DnDUtils.showActions(dtde.getDropAction()));

    // Check the drop action
    if ((dtde.getDropAction() & DnDConstants.ACTION_COPY_OR_MOVE!= 0) {
      // Accept the drop and get the transfer data
      dtde.acceptDrop(dtde.getDropAction());
      Transferable transferable = dtde.getTransferable();

      try {
        boolean result = false;

        if (draggingFile) {
          result = dropFile(transferable);
        else {
          result = dropContent(transferable, dtde);
        }

        dtde.dropComplete(result);
        DnDUtils.debugPrintln("Drop completed, success: " + result);
      catch (Exception e) {
        DnDUtils.debugPrintln("Exception while handling drop " + e);
        dtde.dropComplete(false);
      }
    else {
      DnDUtils.debugPrintln("Drop target rejected drop");
      dtde.rejectDrop();
    }
  }

  // PropertyChangeListener interface
  public void propertyChange(PropertyChangeEvent evt) {
    String propertyName = evt.getPropertyName();
    if (propertyName.equals("enabled")) {
      // Enable the drop target if the JEditorPane is enabled
      // and vice versa.
      dropTarget.setActive(pane.isEnabled());
    else if (!changingBackground && propertyName.equals("background")) {
      backgroundColor = pane.getBackground();
    }
  }

  // Internal methods start here

  protected boolean acceptOrRejectDrag(DropTargetDragEvent dtde) {
    int dropAction = dtde.getDropAction();
    int sourceActions = dtde.getSourceActions();
    boolean acceptedDrag = false;

    DnDUtils.debugPrintln("\tSource actions are "
        + DnDUtils.showActions(sourceActions", drop action is "
        + DnDUtils.showActions(dropAction));

    // Reject if the object being transferred
    // or the operations available are not acceptable.
    if (!acceptableType
        || (sourceActions & DnDConstants.ACTION_COPY_OR_MOVE== 0) {
      DnDUtils.debugPrintln("Drop target rejecting drag");
      dtde.rejectDrag();
    else if (!draggingFile && !pane.isEditable()) {
      // Can't drag text to a read-only JEditorPane
      DnDUtils.debugPrintln("Drop target rejecting drag");
      dtde.rejectDrag();
    else if ((dropAction & DnDConstants.ACTION_COPY_OR_MOVE== 0) {
      // Not offering copy or move - suggest a copy
      DnDUtils.debugPrintln("Drop target offering COPY");
      dtde.acceptDrag(DnDConstants.ACTION_COPY);
      acceptedDrag = true;
    else {
      // Offering an acceptable operation: accept
      DnDUtils.debugPrintln("Drop target accepting drag");
      dtde.acceptDrag(dropAction);
      acceptedDrag = true;
    }

    return acceptedDrag;
  }

  protected void dragUnderFeedback(DropTargetDragEvent dtde,
      boolean acceptedDrag) {
    if (draggingFile) {
      // When dragging a file, change the background color
      Color newColor = (dtde != null && acceptedDrag ? feedbackColor
          : backgroundColor);
      if (newColor.equals(pane.getBackground()) == false) {
        changingBackground = true;
        pane.setBackground(newColor);
        changingBackground = false;
        pane.repaint();
      }
    else {
      if (dtde != null && acceptedDrag) {
        // Dragging text - move the insertion cursor
        Point location = dtde.getLocation();
        pane.getCaret().setVisible(true);
        pane.setCaretPosition(pane.viewToModel(location));
      else {
        pane.getCaret().setVisible(false);
      }
    }
  }

  protected void checkTransferType(DropTargetDragEvent dtde) {
    // Accept a list of files, or data content that
    // amounts to plain text or a Unicode text string
    acceptableType = false;
    draggingFile = false;
    if (dtde.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) {
      acceptableType = true;
      draggingFile = true;
    else if (dtde.isDataFlavorSupported(DataFlavor.plainTextFlavor)
        || dtde.isDataFlavorSupported(DataFlavor.stringFlavor)) {
      acceptableType = true;
    }
    DnDUtils.debugPrintln("File type acceptable - " + acceptableType);
    DnDUtils.debugPrintln("Dragging a file - " + draggingFile);
  }

  // This method handles a drop for a list of files
  protected boolean dropFile(Transferable transferablethrows IOException,
      UnsupportedFlavorException, MalformedURLException {
    List fileList = (Listtransferable
        .getTransferData(DataFlavor.javaFileListFlavor);
    File transferFile = (FilefileList.get(0);
    final URL transferURL = transferFile.toURL();
    DnDUtils.debugPrintln("File URL is " + transferURL);

    pane.setPage(transferURL);

    return true;
  }

  // This method handles a drop with data content
  protected boolean dropContent(Transferable transferable,
      DropTargetDropEvent dtde) {
    if (!pane.isEditable()) {
      // Can't drop content on a read-only text control
      return false;
    }

    try {
      // Check for a match with the current content type
      DataFlavor[] flavors = dtde.getCurrentDataFlavors();

      DataFlavor selectedFlavor = null;

      // Look for either plain text or a String.
      for (int i = 0; i < flavors.length; i++) {
        DataFlavor flavor = flavors[i];
        DnDUtils.debugPrintln("Drop MIME type " + flavor.getMimeType()
            " is available");
        if (flavor.equals(DataFlavor.plainTextFlavor)
            || flavor.equals(DataFlavor.stringFlavor)) {
          selectedFlavor = flavor;
          break;
        }
      }

      if (selectedFlavor == null) {
        // No compatible flavor - should never happen
        return false;

      }

      DnDUtils.debugPrintln("Selected flavor is "
          + selectedFlavor.getHumanPresentableName());

      // Get the transferable and then obtain the data
      Object data = transferable.getTransferData(selectedFlavor);

      DnDUtils.debugPrintln("Transfer data type is "
          + data.getClass().getName());

      String insertData = null;
      if (data instanceof InputStream) {
        // Plain text flavor
        String charSet = selectedFlavor.getParameter("charset");
        InputStream is = (InputStreamdata;
        byte[] bytes = new byte[is.available()];
        is.read(bytes);
        try {
          insertData = new String(bytes, charSet);
        catch (UnsupportedEncodingException e) {
          // Use the platform default encoding
          insertData = new String(bytes);
        }
      else if (data instanceof String) {
        // String flavor
        insertData = (Stringdata;
      }

      if (insertData != null) {
        int selectionStart = pane.getCaretPosition();
        pane.replaceSelection(insertData);
        pane.select(selectionStart, selectionStart
            + insertData.length());
        return true;
      }
      return false;
    catch (Exception e) {
      return false;
    }
  }

  public static void main(String[] args) {
    try {
        UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
    catch (Exception evt) {}
  
    final JFrame f = new JFrame("JEditor Pane Drop Target Example 3");

    final JEditorPane pane = new JEditorPane();

    // Add a drop target to the JEditorPane
    EditorDropTarget3 target = new EditorDropTarget3(pane);

    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent evt) {
        System.exit(0);
      }
    });

    JPanel panel = new JPanel();
    final JCheckBox editable = new JCheckBox("Editable");
    editable.setSelected(true);
    panel.add(editable);
    editable.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        pane.setEditable(editable.isSelected());
      }
    });

    final JCheckBox enabled = new JCheckBox("Enabled");
    enabled.setSelected(true);
    panel.add(enabled);
    enabled.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent evt) {
        pane.setEnabled(enabled.isSelected());
      }
    });

    f.getContentPane().add(new JScrollPane(pane), BorderLayout.CENTER);
    f.getContentPane().add(panel, BorderLayout.SOUTH);
    f.setSize(500400);
    f.setVisible(true);
  }

  protected JEditorPane pane;

  protected DropTarget dropTarget;

  protected boolean acceptableType; // Indicates whether data is acceptable

  protected boolean draggingFile; // True if dragging an entire file

  protected Color backgroundColor; // Original background color of JEditorPane

  protected boolean changingBackground;

  protected static final Color feedbackColor = Color.gray;
}

class DnDUtils {
  public static String showActions(int action) {
    String actions = "";
    if ((action & (DnDConstants.ACTION_LINK | DnDConstants.ACTION_COPY_OR_MOVE)) == 0) {
      return "None";
    }

    if ((action & DnDConstants.ACTION_COPY!= 0) {
      actions += "Copy ";
    }

    if ((action & DnDConstants.ACTION_MOVE!= 0) {
      actions += "Move ";
    }

    if ((action & DnDConstants.ACTION_LINK!= 0) {
      actions += "Link";
    }

    return actions;
  }

  public static boolean isDebugEnabled() {
    return debugEnabled;
  }

  public static void debugPrintln(String s) {
    if (debugEnabled) {
      System.out.println(s);
    }
  }

  private static boolean debugEnabled = (System
      .getProperty("DnDExamples.debug"!= null);
}

           
         
  
Related examples in the same category
1. 树:拖放树:拖放
2. 拖放拖放
3. 添加图像拖拽行为
4. 拖拽文件拖拽文件
5. 展示各种界面数据传输展示各种界面数据传输
6. DragSource Test DragSource Test
7. DropTarget Test DropTarget Test
8. 图像传输试验图像传输试验
9. MimeClipboard试验MimeClipboard试验
10. 文件树拖拽目标文件树拖拽目标
11. 文件树拖曳来源文件树拖曳来源
12. 编辑器拖曳目标4编辑器拖曳目标4
13. 拖曳树拖曳树
14. JLabel Drag Source JLabel Drag Source
15. 拖拽面板拖拽面板
16. 编辑器拖拽目标编辑器拖拽目标
17. 编辑器拖拽目标2编辑器拖拽目标2
18. JTextArea类允许TransferableColor对象JTextArea类允许TransferableColor对象
19. 转让彩色
20. 彩色拖曳来源
21. 组件拖放文件到树组件拖放文件到树
22. 试验DragGesture类和JList试验DragGesture类和JList
23. TransferHandler和JTextAreaTransferHandler和JTextArea
24. 拖放:文本拖放:文本
25. 拖曳:JList拖曳:JList
26. JDK 1.4组件拖放JDK 1.4组件拖放
27. 拖放: JList和列表框拖放: JList和列表框
28. DnD (drag and drop)JTree code DnD (drag and drop)JTree code
29. 下拉:文本下拉:文本
30. 拖放:文本2拖放:文本2
31. Label DnD (Drag and Drop) Label DnD (Drag and Drop)
32. LabelDnD2允许颜色拖拽LabelDnD2允许颜色拖拽
33. Drag List Demo Drag List Demo
34. Drag Picture Demo
35. 拖拽演示拖拽演示
36. 拖动颜色演示拖动颜色演示
37. 拖动文件演示拖动文件演示
38. Drag Picture Demo 2
39. 拖动TextField的颜色演示拖动TextField的颜色演示
40. BasicDnD (拖拽)BasicDnD (拖拽)
41. 拖放图标:使用一个图标属性。
42. 执行拖放功能
43. 在应用程序探测拖动发起的姿态
44. 制作组件拖动
45. 使用和设置文字系统剪贴板
46. 使用拖放以重新排序清单
47. 创建一个拖曳源来拖拽对象。
48. 实施DragGestureListener
49. 逗号分隔的文本将插入到两个或两个以上的列。
50. TransferHandler subclass wraps another TransferHandler and delegates most of its operations to the wrapped handler
51. 在JTextArea设置文本拖放
52. 内置拖放支持:利用TransferHandler类
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.