1 10 import java.io.*; 11 import java.awt.datatransfer.DataFlavor ; 12 import javax.activation.*; 13 14 15 public class PlainDCH implements DataContentHandler { 16 20 public DataFlavor [] getTransferDataFlavors() { DataFlavor flavors[] = new DataFlavor [2]; 22 23 24 try { 25 flavors[0] = new ActivationDataFlavor(Class.forName("java.lang.String"), 26 "text/plain", 27 "text string"); 28 } catch(Exception e) 29 { System.out.println(e); } 30 31 flavors[1] = new DataFlavor ("text/plain", "Plain Text"); 32 return flavors; 33 } 34 40 public Object getTransferData(DataFlavor df, DataSource ds) { 41 42 if(df.getMimeType().equals("text/plain")) { 45 if(df.getRepresentationClass().getName().equals( 46 "java.lang.String")) { 47 StringBuffer buf = new StringBuffer (); 49 char data[] = new char[1024]; 50 InputStreamReader isr = null; 52 int bytes_read = 0; 53 int total_bytes = 0; 54 55 try { 56 isr = new InputStreamReader(ds.getInputStream()); 57 58 61 while(true){ 62 bytes_read = isr.read(data); 63 if(bytes_read > 0) 64 buf.append(data, total_bytes, bytes_read); 65 else 66 break; 67 total_bytes += bytes_read; 68 } 69 } catch(Exception e) {} 70 71 return buf.toString(); 72 73 } 74 else if(df.getRepresentationClass().getName().equals( 75 "java.io.InputStream")){ 76 try { 78 return ds.getInputStream(); 79 } catch (Exception e) {} 80 } 81 82 } 83 84 return null; 85 } 86 87 90 public Object getContent(DataSource ds) { StringBuffer buf = new StringBuffer (); 92 char data[] = new char[1024]; 93 InputStreamReader isr = null; 95 int bytes_read = 0; 96 int total_bytes = 0; 97 98 try { 99 isr = new InputStreamReader(ds.getInputStream()); 100 101 104 while(true){ 105 bytes_read = isr.read(data); 106 if(bytes_read > 0) 107 buf.append(data, total_bytes, bytes_read); 108 else 109 break; 110 total_bytes += bytes_read; 111 } 112 } catch(Exception e) {} 113 114 return buf.toString(); 115 } 116 121 public void writeTo(Object obj, String mimeTye, OutputStream os) 122 throws IOException { 123 } 125 126 } 127
| Popular Tags
|