MimeClipboard试验 : 拖放 « 图形用户界面 « 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 » 图形用户界面 » 拖放屏幕截图 
MimeClipboard试验
MimeClipboard试验
 

/**
 @version 1.10 1999-09-20
 @author Cay Horstmann
 */

import java.awt.Container;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.MediaTracker;
import java.awt.Toolkit;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.ClipboardOwner;
import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.StringSelection;
import java.awt.datatransfer.Transferable;
import java.awt.datatransfer.UnsupportedFlavorException;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.image.BufferedImage;
import java.awt.image.WritableRaster;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FilterInputStream;
import java.io.FilterOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.OutputStream;
import java.io.Serializable;

import javax.swing.ImageIcon;
import javax.swing.JFileChooser;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;

public class MimeClipboardTest {
  public static void main(String[] args) {
    JFrame frame = new MimeClipboardFrame();
    frame.show();
  }
}

class MimeClipboardFrame extends JFrame implements ActionListener {
  public MimeClipboardFrame() {
    setSize(300300);
    setTitle("MimeClipboardTest");
    addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });

    Container contentPane = getContentPane();
    label = new JLabel();
    contentPane.add(label, "Center");

    JMenu fileMenu = new JMenu("File");
    openItem = new JMenuItem("Open");
    openItem.addActionListener(this);
    fileMenu.add(openItem);

    exitItem = new JMenuItem("Exit");
    exitItem.addActionListener(this);
    fileMenu.add(exitItem);

    JMenu editMenu = new JMenu("Edit");
    copyItem = new JMenuItem("Copy");
    copyItem.addActionListener(this);
    editMenu.add(copyItem);

    pasteItem = new JMenuItem("Paste");
    pasteItem.addActionListener(this);
    editMenu.add(pasteItem);

    JMenuBar menuBar = new JMenuBar();
    menuBar.add(fileMenu);
    menuBar.add(editMenu);
    setJMenuBar(menuBar);
  }

  public void actionPerformed(ActionEvent evt) {
    Object source = evt.getSource();
    if (source == openItem) {
      JFileChooser chooser = new JFileChooser();
      chooser.setCurrentDirectory(new File("."));

      chooser.setFileFilter(new javax.swing.filechooser.FileFilter() {
        public boolean accept(File f) {
          String name = f.getName().toLowerCase();
          return name.endsWith(".gif"|| name.endsWith(".jpg")
              || name.endsWith(".jpeg"|| f.isDirectory();
        }

        public String getDescription() {
          return "Image files";
        }
      });

      int r = chooser.showOpenDialog(this);
      if (r == JFileChooser.APPROVE_OPTION) {
        String name = chooser.getSelectedFile().getAbsolutePath();
        setImage(Toolkit.getDefaultToolkit().getImage(name));
      }
    else if (source == exitItem)
      System.exit(0);
    else if (source == copyItem)
      copy();
    else if (source == pasteItem)
      paste();
  }

  private void copy() {
    MediaTracker tracker = new MediaTracker(this);
    tracker.addImage(theImage, 0);
    try {
      tracker.waitForID(0);
    catch (InterruptedException e) {
    }
    BufferedImage image = new BufferedImage(theImage.getWidth(null),
        theImage.getHeight(null), BufferedImage.TYPE_INT_RGB);
    Graphics2D g2 = image.createGraphics();
    g2.drawImage(theImage, 00null);

    Bitmap bitmap = new Bitmap(image);
    SerializableSelection selection = new SerializableSelection(bitmap);
    mimeClipboard.setContents(selection, null);
  }

  private void paste() {
    Transferable selection = mimeClipboard.getContents(this);
    try {
      Bitmap bitmap = (Bitmapselection
          .getTransferData(SerializableSelection.serializableFlavor);
      setImage(bitmap.getImage());
    catch (Exception e) {
    }
  }

  public void setImage(Image image) {
    theImage = image;
    label.setIcon(new ImageIcon(image));
  }

  private static Clipboard mimeClipboard = new MimeClipboard(Toolkit
      .getDefaultToolkit().getSystemClipboard());

  private Image theImage;

  private JLabel label;

  private JMenuItem openItem;

  private JMenuItem exitItem;

  private JMenuItem copyItem;

  private JMenuItem pasteItem;
}

class Bitmap implements Serializable {
  public Bitmap(BufferedImage image) {
    type = image.getType();
    width = image.getWidth();
    height = image.getHeight();
    WritableRaster raster = image.getRaster();
    data = raster.getDataElements(00, width, height, null);
  }

  public BufferedImage getImage() {
    BufferedImage image = new BufferedImage(width, height, type);
    WritableRaster raster = image.getRaster();
    raster.setDataElements(00, width, height, data);
    return image;
  }

  private int type;

  private int width;

  private int height;

  private Object data;
}

class SerializableSelection implements Transferable {
  public SerializableSelection(Serializable object) {
    theObject = object;
  }

  public boolean isDataFlavorSupported(DataFlavor flavor) {
    return flavor.equals(serializableFlavor);
  }

  public synchronized Object getTransferData(DataFlavor flavor)
      throws UnsupportedFlavorException {
    if (flavor.equals(serializableFlavor)) {
      return theObject;
    else {
      throw new UnsupportedFlavorException(flavor);
    }
  }

  public DataFlavor[] getTransferDataFlavors() {
    return flavors;
  }

  public static final DataFlavor serializableFlavor = new DataFlavor(
      java.io.Serializable.class, "Serializable Object");

  private static DataFlavor[] flavors = serializableFlavor };

  private Serializable theObject;
}

class MimeClipboard extends Clipboard {
  public MimeClipboard(Clipboard cb) {
    super("MIME/" + cb.getName());
    clip = cb;
  }

  public synchronized void setContents(Transferable contents,
      ClipboardOwner owner) {
    if (contents instanceof SerializableSelection) {
      try {
        DataFlavor flavor = SerializableSelection.serializableFlavor;
        Serializable obj = (Serializablecontents
            .getTransferData(flavor);
        String enc = encode(obj);
        String header = "Content-type: " + flavor.getMimeType()
            "\nContent-length: " + enc.length() "\n\n";
        StringSelection selection = new StringSelection(header + enc);
        clip.setContents(selection, owner);
      catch (UnsupportedFlavorException e) {
      catch (IOException e) {
      }
    else
      clip.setContents(contents, owner);
  }

  public synchronized Transferable getContents(Object requestor) {
    Transferable contents = clip.getContents(requestor);

    if (contents instanceof StringSelection) {
      String data = null;
      try {
        data = (Stringcontents
            .getTransferData(DataFlavor.stringFlavor);
      catch (UnsupportedFlavorException e) {
        return contents;
      catch (IOException e) {
        return contents;
      }

      if (!data.startsWith("Content-type: "))
        return contents;
      int start = -1;
      // skip three newlines
      for (int i = 0; i < 3; i++) {
        start = data.indexOf('\n', start + 1);
        if (start < 0)
          return contents;
      }
      Serializable obj = decode(data.substring(start));
      SerializableSelection selection = new SerializableSelection(obj);
      return selection;
    else
      return contents;
  }

  public static String encode(Serializable obj) {
    ByteArrayOutputStream bOut = new ByteArrayOutputStream();
    try {
      Base64OutputStream b64Out = new Base64OutputStream(bOut);
      ObjectOutputStream out = new ObjectOutputStream(b64Out);
      out.writeObject(obj);
      out.close();
      return bOut.toString("8859_1");
    catch (IOException exception) {
      return null;
    }
  }

  public static Serializable decode(String s) {
    try {
      byte[] bytes = s.getBytes("8859_1");
      ByteArrayInputStream bIn = new ByteArrayInputStream(bytes);
      Base64InputStream b64In = new Base64InputStream(bIn);
      ObjectInputStream in = new ObjectInputStream(b64In);
      Object obj = in.readObject();
      in.close();
      return (Serializableobj;
    catch (Exception e) {
      return null;
    }
  }

  private Clipboard clip;
}

/*
 * BASE64 encoding encodes 3 bytes into 4 characters.
 * |11111122|22223333|33444444| Each set of 6 bits is encoded according to the
 * toBase64 map. If the number of input bytes is not a multiple of 3, then the
 * last group of 4 characters is padded with one or two = signs. Each output
 * line is at most 76 characters.
 */

class Base64OutputStream extends FilterOutputStream {
  public Base64OutputStream(OutputStream out) {
    super(out);
  }

  public void write(int cthrows IOException {
    inbuf[i= c;
    i++;
    if (i == 3) {
      super.write(toBase64[(inbuf[00xFC>> 2]);
      super.write(toBase64[((inbuf[00x03<< 4)
          ((inbuf[10xF0>> 4)]);
      super.write(toBase64[((inbuf[10x0F<< 2)
          ((inbuf[20xC0>> 6)]);
      super.write(toBase64[inbuf[20x3F]);
      col += 4;
      i = 0;
      if (col >= 76) {
        super.write('\n');
        col = 0;
      }
    }
  }

  public void flush() throws IOException {
    if (i == 1) {
      super.write(toBase64[(inbuf[00xFC>> 2]);
      super.write(toBase64[(inbuf[00x03<< 4]);
      super.write('=');
      super.write('=');
    else if (i == 2) {
      super.write(toBase64[(inbuf[00xFC>> 2]);
      super.write(toBase64[((inbuf[00x03<< 4)
          ((inbuf[10xF0>> 4)]);
      super.write(toBase64[(inbuf[10x0F<< 2]);
      super.write('=');
    }
    i = 0;
  }

  private static char[] toBase64 = 'A''B''C''D''E''F''G''H',
      'I''J''K''L''M''N''O''P''Q''R''S''T''U',
      'V''W''X''Y''Z''a''b''c''d''e''f''g''h',
      'i''j''k''l''m''n''o''p''q''r''s''t''u',
      'v''w''x''y''z''0''1''2''3''4''5''6''7',
      '8''9''+''/' };

  private int col = 0;

  private int i = 0;

  private int[] inbuf = new int[3];
}

class Base64InputStream extends FilterInputStream {
  public Base64InputStream(InputStream in) {
    super(in);
  }

  public int read(byte[] b, int off, int lenthrows IOException {
    if (len > b.length - off)
      len = b.length - off;
    for (int i = 0; i < len; i++) {
      int ch = read();
      if (ch == -1)
        return i;
      b[i + off(bytech;
    }
    return len;

  }

  public int read(byte[] bthrows IOException {
    return read(b, 0, b.length);
  }

  public int read() throws IOException {
    int r;
    if (i == 0) { // skip whitespace
      do {
        ch[0super.read();
        if (ch[0== -1)
          return -1;
      while (Character.isWhitespace((charch[0]));
      ch[1super.read();
      if (ch[1== -1)
        return -1;
      i++;
      r = (fromBase64[ch[0]] << 2(fromBase64[ch[1]] >> 4);
    else if (i == 1) {
      ch[2super.read();
      if (ch[2== '=' || ch[2== -1)
        return -1;
      i++;
      r = ((fromBase64[ch[1]] 0x0F<< 4(fromBase64[ch[2]] >> 2);
    else {
      ch[3super.read();
      if (ch[3== '=' || ch[3== -1)
        return -1;
      i = 0;
      r = ((fromBase64[ch[2]] 0x03<< 6| fromBase64[ch[3]];
    }
    return r;
  }

  private static int[] fromBase64 = -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
      -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
      -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -162,
      -1, -1, -16352535455565758596061, -1, -1, -1,
      -1, -1, -1, -101234567891011121314,
      1516171819202122232425, -1, -1, -1, -1, -1, -1,
      2627282930313233343536373839404142,
      434445464748495051, -1, -1, -1, -1, -};

  int i = 0;

  int[] ch = new int[4];
}

           
         
  
Related examples in the same category
1. 树:拖放树:拖放
2. 拖放拖放
3. 添加图像拖拽行为
4. 拖拽文件拖拽文件
5. 展示各种界面数据传输展示各种界面数据传输
6. DragSource Test DragSource Test
7. DropTarget Test DropTarget Test
8. 图像传输试验图像传输试验
9. 文件树拖拽目标文件树拖拽目标
10. 文件树拖曳来源文件树拖曳来源
11. 编辑器拖曳目标4编辑器拖曳目标4
12. 拖曳树拖曳树
13. JLabel Drag Source JLabel Drag Source
14. 拖拽面板拖拽面板
15. 编辑器拖拽目标3编辑器拖拽目标3
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.