0
votes
2answers
30 views

onPostExecute not allowing me to create Toast message

Please see this before for context: Anonymous Uploading File object to Imgur API (JSON) gives Authentication Error 401 (it has the code for doInBackground() method in case anyone is interested) Using ...
0
votes
1answer
21 views

How do I read data posted to the System Clipboard from Windows Math Input Panel in Java. What is the data flavor?

I'm trying to read the mathML clipboard content from the windows Math Input Panel, but when I check getAvailableFlavors from the FlavorEvent from a FlavorListner on the results of getSystemClipboard, ...
1
vote
0answers
26 views

Are there any alternative for getSystemSelection()?

I am trying to get data from the clipboard using getSystemSelection() but it's returning null. Most references say that some platforms don't support this. Is there any alternative? Here is my current ...
4
votes
1answer
60 views

Java Clipboard on Linux (text only), some programs can read it, others can't, why

When my Java-based application (not a browser-based applet) copies plain text to the system clipboard on Linux, many programs are not able to access the clipboard data, but some are. Here's the ...
0
votes
1answer
35 views

Clipboard copy from outlook always has black background set when retrieved as image from Java clipboard object

Here are the application steps copy some richtext from a html email message or from a website(a combination of text + image) In your java code retrieve the content copied from the clipboard object ...
0
votes
0answers
19 views

Update clipboard from widget?

Say I click a widget and I want some text added to clipboard. Is this possible? Currently I do this from inside the app itself which works fine: ClipboardManager clipboard = (ClipboardManager) ...
0
votes
0answers
26 views

Clipboard not getting refreshed after copying from Signed Applet the first time

I have a Signed Applet. Before copying any string etc. from the applet, I am able to paste data into the applet's textfield from external source such as a text file. But once I copy some string from ...
1
vote
0answers
46 views

Copying selected text to java swing application as image

I need to copy selected text from outlook (2010) to a java swing application. Instead of showing content on that image, it creates a black image. final BufferedImage image = (BufferedImage) ...
1
vote
0answers
86 views

How to call Java from C++ and how to edit clipboard

I have been trying to look for ways to run a .jar file from C++. I am doing this because I do not yet know how to add text to the Clipboard in Windows. As an alternative, I was going to have the C++ ...
0
votes
0answers
48 views

failure with getting clipboard content in java

/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package prijsveranderaar; import java.awt.AWTException; import java.awt.Robot; import ...
1
vote
0answers
29 views

Java - could not fetch clipboard data (midi) from CakeWalk

I am trying to get clipboard data (in windows) which were "copied" from CakeWalk midi editor. They are visible in clipboard viewers and could be pasted into other programs, but I could not get them in ...
0
votes
1answer
74 views

Copy text with colors to clipboard

As the title says, how can I copy colored/styled text to the windows clipboard in Java? The text is located in a JEditorPane like this: JEditorPane je = new JEditorPane("text/html","a <font ...
0
votes
2answers
123 views

Copying DefaultTableModel data to clipboard

I have the next JTable private void initComponents() { jScrollPane1 = new javax.swing.JScrollPane(); jTable1 = new javax.swing.JTable(); jButton1 = new javax.swing.JButton(); ...
1
vote
0answers
59 views

Copy Multiple Items To Clipboard

For admin purposes on one of my sites for me alone using IE - I use software (xNeat Clipboard Manager) that allows me to access my Clipboard History. I have PHP pages that are populated from MySql. I ...
0
votes
0answers
65 views

Imgur upload URL to clipboard

Can anybody help me with getting the URL and add it to the users clipboard? I can't figure it out any help would be appreciated public String run(BufferedImage image) throws Exception { ...
0
votes
1answer
85 views

Formatted cliboard Java

I am having an issue trying to figure out how to retain formatting of text in a Java program when saving to the system clipboard. It does not work with things such as Microsoft's Wordpad or Lotus ...
1
vote
0answers
180 views

Java Clipboard: Paste HTML from Firefox on Linux

I have a strange problem when pasting HTML from Firefox into a Java6 app (only!) on Linux. Here is a minimal example: import java.awt.Toolkit; import java.awt.datatransfer.Clipboard; import ...
0
votes
2answers
124 views

Using the Default Editor Kit to put text on system clipboard

I have been trying for a month now to reliably set the system clipboard in my program. Currently it works about 95/100 times. But I keep searching. Yesterday I came upon this the Java ...
0
votes
1answer
80 views

Insert string in clipboard without lost formatted text / style

I need to insert a string at the beginning of the clipboard without losing inline formatting of text containing the same. Currently this is not happening in my code! public String getClipboard() { ...
0
votes
0answers
40 views

Cannot gain control over clipboard even with controlling logic

This is a continuance of the question: http://stackoverflow.com/questions/14489733/error-cannot-open-system-clipboard-trying-to-set-system-clipboard-fails-works It seems even with the MouseToucher ...
1
vote
0answers
115 views

Java transparent PNG to clipboard

I´m trying to copy a png file to clipboard within a program and maintain its alpha channel when pasted in another program (e.g. ms office, paint, photoshop). The problem is, that the alpha channel ...
0
votes
0answers
63 views

Notify when something is pasted from the system clipboard

In Java you can access the system clipboard and paste to it as such: StringSelection stringSelection = new StringSelection (text); Clipboard clpbrd = Toolkit.getDefaultToolkit ().getSystemClipboard ...
1
vote
2answers
177 views

What is the JTable CTRL+C event's name?

I am developing a Java application, and when I press CTRL+C on a jTable, I can get the clipboard and paste it in Excel. I would like to implement a button that does the same thing. How can I get the ...
0
votes
1answer
157 views

How do you copy a String to the system clipboard in java?

I have a JTextArea and would like to have a button that when clicked will copy the entire contents of the JTextArea to the System clipboard so that I can do Ctrl-V in any other program. I have tried ...
5
votes
1answer
615 views

Java: use clipboard to copy-paste java objects between different instances of same application

I am trying to implement copy-paste of objects between different instances of same application. Currently it works only in one application (I mean, copy and paste in the same instance of application), ...
1
vote
2answers
84 views

calling a method when content of clipboard is changed

I'm trying to make a little desktop app that should show the contents of the clipboard (if it is a string). I have done a constructor that does that and it works well, now I just want to make a call ...
-1
votes
1answer
96 views

How to implement clipboard in JavaFX

How to make clipboard lister that continuous listen for clipboard change in JavaFX?
0
votes
1answer
144 views

Find format of clipboard image in Java

I'm getting images from clipboard using this: if(Toolkit.getDefaultToolkit().getSystemClipboard().isDataFlavorAvailable(DataFlavor.imageFlavor)){ ImageIcon IMG = new ...
1
vote
3answers
77 views

Strange behaviour in KeyListener when using Clipboard

okay i tried to do a simple ctrl+c for my JTable, but when using the control button the whole row is copied, not the specified cell. how do i get the desired effect? public class ClipboardTable { ...
1
vote
1answer
75 views

where is text highlighted stored?

I need to make an application which copies the highlighted text . I tried this program String myString = "This text will be copied into clipboard when running this code!"; StringSelection ...
0
votes
0answers
121 views

How to tell if the system clipboard is clear?

From the testing I have done, I'm quite sure the call java.awt.datatransfer.Clipboard.getContents(null) always returns a Transferable object and never null, although stated otherwise in the Java ...
0
votes
1answer
128 views

Set system clipboard with multiple formats in Java

I know, how to set the system clipboard with data in one format (like text or image data). But I want to write data in multiple formats to the system clipboard. In my application I want to write the ...
3
votes
1answer
202 views

Copy and paste in codemirror.js embeded in javafx application

I'm creating simple editor in Java FX using codemirror.js library. I embeded codemirror editor in javafx using javafx.scene.web.WebView component, with the folowing html/js code: <body> ...
1
vote
2answers
148 views

How send image from java applet to javascript?

I have code in JAVA import java.applet.Applet; import java.awt.Container; import java.awt.FlowLayout; import java.awt.Graphics; import java.awt.Image; import java.awt.MediaTracker; import ...
2
votes
2answers
228 views

Right Click Menu Items for System Clipboard Operations

I've discovered that when running a Java program in Mac OS X, text field objects (e.g. JField) support cut, copy, and paste operations using the system clipboard if you use the key commands without ...
1
vote
1answer
64 views

How do I extend sun.awt.windows to extract a non-standard clipboard format so that I can support drag and drop from a native application?

I am trying to support drag and drop from a native Windows application into a Java application. My problem has been that I have no documentation, and so I have been reverse-engineering it. My first ...
1
vote
2answers
85 views

JApplet lacking full functionality in browser

I have a Java JApplet that functions perfectly when eclipse runs it but dissapoints in a browser. The applet is working fine in the browser up to the point at which the only JButton is pressed. At ...
1
vote
1answer
77 views

Java getting bytes of clipboard

So I want to get the actual bytes of the user's clipboard. I can't find a way of doing this, all I find is how to get the clipboard as a String. To get the clipboard as a String, I'd have to do ...
0
votes
2answers
174 views

system clipboard only inside an application

I have a swing application and I want to copy some text to the system clipboard. I do this with Clipboard systemClipboard = Toolkit.getDefaultToolkit().getSystemClipboard(); StringSelection ...
0
votes
0answers
48 views

Is it possible to write a plugin for the Android Clipboard?

Just got a new phone running the Android mobile OS. I'm 100% new to Android (and therefore its SDK). I was wondering if it is possible to write a plugin for the Clipboard manager. To be more precise, ...
2
votes
0answers
182 views

Detect difference between Cut and Copy in Swing

I'm using Java 6, it's highly unlikely we'll go to Java 7. My Swing application should handle pasting files cut or copied from external sources (be it Windows Explorer, Free Commander, or what have ...
2
votes
1answer
554 views

Copy cell value of JTable with right click

I am showing some results in a JTable that consists of 2 columns. File - Result I implemented a JPopupMenu which displays a copy entry, and I try to copy the value of the cell, where I ...
0
votes
1answer
110 views

Seamless data transfer between the system-wide clipboard and the sandbox inside of a Java applet via JNLP - possible?

I am currently trying to implement the ClipboardService that's provided by the rather new JNLP API to access the system-wide clipboard inside of an Java applet that I launch via JNLP. What I want to ...
2
votes
1answer
127 views

Why do Clipboard Listener use more CPU usage?

I wrote program that listen Clipboard and worked correctly, but i saw that the program use more CPU usage. CPU usage is more 70%. Why? Can i reduce it? or i want Listener that listen windows's copy ...
0
votes
0answers
28 views

Image on Clipboard [duplicate]

Possible Duplicate: Copy BufferedImage to clipboard So, I have the following: BufferedImage image = img.getSubimage(x, y, width, height); ImageSel imageSel = new ImageSel(image); ...
4
votes
1answer
188 views

Strange characters when pasted from Word in our Java app

We have a Java application that's experiencing character encoding problems when pasting from Word into one of its text fields. This is only happening in IE8, and I assume previous IE versions. The ...
0
votes
0answers
263 views

Java applet clipboard sometimes doesnt work on Mac OS x

I have a problem with the clipboard on Mac OS. I created an applet where I work with system clipboard using methods: Toolkit.getDefaultToolkit().getSystemClipboard().getContents(aRequestor); ...
-1
votes
1answer
162 views

java clipboard between linux and windows

I am using the following standard java code to copy string into clipboard. StringSelection ss = new StringSelection("abc"); Toolkit.getDefaultToolkit().getSystemClipboard().setContents(ss, ss); I ...
2
votes
2answers
326 views

Java: how to make text on clipboard get pasted in UI object with Ctrl+V comand?

I am working with the Selenium WebDriver in Java – how can I execute a Ctrl+V command to paste text already existing on clipboard into edit box?
0
votes
1answer
165 views

How to copy Japanese encoded text (other than Unicode type) to clipboard using java?

So, I've made a program that successfully catch text from clipboard and print it via System.out.println in Java. Then, I want to copy the modified text to clipboard. Here is a snippet of that code: ...

1 2