A TransferHandler and JTextArea that will accept any drop at all : TextArea « Swing JFC « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Swing JFC » TextAreaScreenshots 
A TransferHandler and JTextArea that will accept any drop at all
A TransferHandler and JTextArea that will accept any drop at all
 
/*
Java Swing, 2nd Edition
By Marc Loy, Robert Eckstein, Dave Wood, James Elliott, Brian Cole
ISBN: 0-596-00408-7
Publisher: O'Reilly 
*/
// UTest.java
//A test frame work for the UberHandler drop handler. This version has
//no fancy Unicode characters for ease of use. (Note that "ease of use"
//only applys to humans...the Java tools are quite happy with Unicode
//characters. Not all text editors are, though...)
//

import java.awt.datatransfer.DataFlavor;
import java.awt.datatransfer.Transferable;
import java.io.BufferedReader;
import java.io.Reader;

import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.TransferHandler;

public class UTest {

  public static void main(String args[]) {
    JFrame frame = new JFrame("Debugging Drop Zone");
    frame.setSize(500300);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JTextArea jta = new JTextArea();
    frame.getContentPane().add(new JScrollPane(jta));
    UberHandler uh = new UberHandler();
    uh.setOutput(jta);
    jta.setTransferHandler(uh);

    frame.setVisible(true);
  }
}

//UberHandler.java
//A TransferHandler that will accept any drop at all. If a text area is
//registered, debugging information will be sent there. Otherwise, all
//debug information will be sent to stdout.
//

class UberHandler extends TransferHandler {
  JTextArea output;

  public void TransferHandler() {
  }

  public boolean canImport(JComponent dest, DataFlavor[] flavors) {
    // you bet we can!
    return true;
  }

  public boolean importData(JComponent src, Transferable transferable) {
    // Ok, here's the tricky part...
    println("Receiving data from " + src);
    println("Transferable object is: " + transferable);
    println("Valid data flavors: ");
    DataFlavor[] flavors = transferable.getTransferDataFlavors();
    DataFlavor listFlavor = null;
    DataFlavor objectFlavor = null;
    DataFlavor readerFlavor = null;
    int lastFlavor = flavors.length - 1;

    // Check the flavors and see if we find one we like.
    // If we do, save it.
    for (int f = 0; f <= lastFlavor; f++) {
      println("  " + flavors[f]);
      if (flavors[f].isFlavorJavaFileListType()) {
        listFlavor = flavors[f];
      }
      if (flavors[f].isFlavorSerializedObjectType()) {
        objectFlavor = flavors[f];
      }
      if (flavors[f].isRepresentationClassReader()) {
        readerFlavor = flavors[f];
      }
    }

    // Ok, now try to display the content of the drop.
    try {
      DataFlavor bestTextFlavor = DataFlavor
          .selectBestTextFlavor(flavors);
      BufferedReader br = null;
      String line = null;
      if (bestTextFlavor != null) {
        println("Best text flavor: " + bestTextFlavor.getMimeType());
        println("Content:");
        Reader r = bestTextFlavor.getReaderForText(transferable);
        br = new BufferedReader(r);
        line = br.readLine();
        while (line != null) {
          println(line);
          line = br.readLine();
        }
        br.close();
      else if (listFlavor != null) {
        java.util.List list = (java.util.Listtransferable
            .getTransferData(listFlavor);
        println(list);
      else if (objectFlavor != null) {
        println("Data is a java object:\n"
            + transferable.getTransferData(objectFlavor));
      else if (readerFlavor != null) {
        println("Data is an InputStream:");
        br = new BufferedReader((Readertransferable
            .getTransferData(readerFlavor));
        line = br.readLine();
        while (line != null) {
          println(line);
        }
        br.close();
      else {
        // Don't know this flavor type yet...
        println("No text representation to show.");
      }
      println("\n\n");
    catch (Exception e) {
      println("Caught exception decoding transfer:");
      println(e);
      return false;
    }
    return true;
  }

  public void exportDone(JComponent source, Transferable data, int action) {
    // Just let us know when it occurs...
    System.err.println("Export Done.");
  }

  public void setOutput(JTextArea jta) {
    output = jta;
  }

  protected void print(Object o) {
    print(o.toString());
  }

  protected void print(String s) {
    if (output != null) {
      output.append(s);
    else {
      System.out.println(s);
    }
  }

  protected void println(Object o) {
    println(o.toString());
  }

  protected void println(String s) {
    if (output != null) {
      output.append(s);
      output.append("\n");
    else {
      System.out.println(s);
    }
  }

  protected void println() {
    println("");
  }

  public static void main(String args[]) {
    JFrame frame = new JFrame("Debugging Drop Zone");
    frame.setSize(500300);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JTextArea jta = new JTextArea();
    frame.getContentPane().add(new JScrollPane(jta));
    UberHandler uh = new UberHandler();
    uh.setOutput(jta);
    jta.setTransferHandler(uh);

    frame.setVisible(true);
  }
}



           
         
  
Related examples in the same category
1. Creating a JTextArea Component
2. Insert some text after the 5th character
3. Delete the first 5 characters
4. Enumerating the Lines in a JTextArea Component
5. Modifying Text in a JTextArea Component
6. Fancier custom caret classFancier custom caret class
7. Show line start end offsets in a JTextAreaShow line start end offsets in a JTextArea
8. Drop: TextAreaDrop: TextArea
9. Drag and drop: TextArea 2Drag and drop: TextArea 2
10. Caret SampleCaret Sample
11. TextArea Background ImageTextArea Background Image
12. Cut Paste SampleCut Paste Sample
13. TextArea SampleTextArea Sample
14. TextArea ExampleTextArea Example
15. Wrap textareaWrap textarea
16. Replace text in text areaReplace text in text area
17. Text BoundaryText Boundary
18. TextField ExampleTextField Example
19. TextArea Elements 2TextArea Elements 2
20. TextArea ElementsTextArea Elements
21. TextArea Views 2TextArea Views 2
22. TextArea Views 3TextArea Views 3
23. TextArea with UnicodeTextArea with Unicode
24. Internationalized Graphical User Interfaces: unicode cut and pasteInternationalized Graphical User Interfaces: unicode cut and paste
25. Text Component Demo 2Text Component Demo 2
26. Text Component DemoText Component Demo
27. Text Input DemoText Input Demo
28. Text Components Sampler DemoText Components Sampler Demo
29. TextArea Share ModelTextArea Share Model
30. Set the start of the selection; ignored if new start is < end
31. Set the end of the selection; ignored if new end is > start
32. Set the caret color
33. Simple Editor DemoSimple Editor Demo
34. Setting the Tab Size of a JTextArea Component
35. Moving the Focus with the TAB Key in a JTextArea Component
36. Enabling Word-Wrapping and Line-Wrapping in a JTextArea Component
37. Append some text to JTextArea
38. Replace the first 3 characters with some text
39. Enable word-wrapping
40. Enumerate the content elements with a ElementIterator
41. Highlight of discontinous string
42. Copy selected text from one text area to another
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.