Je souhaite copier du texte d'une cellule de JTable
dans le presse-papiers, afin de le coller dans d'autres programmes tels que Microsoft Word. J'ai le texte du JTable
, mais je ne sais pas comment le copier dans le presse-papier.
Cela fonctionne pour moi et est assez simple:
Importez ces:
import Java.awt.datatransfer.StringSelection;
import Java.awt.Toolkit;
Et mettez ensuite cet extrait de code partout où vous souhaitez modifier le Presse-papiers:
String myString = "This text will be copied into clipboard";
StringSelection stringSelection = new StringSelection(myString);
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
clipboard.setContents(stringSelection, null);
La classe suivante vous permet de copier/coller une chaîne dans/à partir du presse-papiers.
import Java.awt.AWTException;
import Java.awt.HeadlessException;
import Java.awt.Robot;
import Java.awt.Toolkit;
import Java.awt.datatransfer.Clipboard;
import Java.awt.datatransfer.DataFlavor;
import Java.awt.datatransfer.StringSelection;
import Java.awt.datatransfer.UnsupportedFlavorException;
import Java.awt.event.KeyEvent;
import Java.io.IOException;
public class SystemClipboard
{
public static void copy(String text)
{
Clipboard clipboard = getSystemClipboard();
clipboard.setContents(new StringSelection(text), null);
}
public static void paste() throws AWTException
{
Robot robot = new Robot();
robot.keyPress(KeyEvent.VK_CONTROL);
robot.keyPress(KeyEvent.VK_V);
robot.keyRelease(KeyEvent.VK_CONTROL);
robot.keyRelease(KeyEvent.VK_V);
}
public static String get() throws Exception
{
Clipboard systemClipboard = getSystemClipboard();
DataFlavor dataFlavor = DataFlavor.stringFlavor;
if (systemClipboard.isDataFlavorAvailable(dataFlavor))
{
Object text = systemClipboard.getData(dataFlavor);
return (String) text;
}
return null;
}
private static Clipboard getSystemClipboard()
{
Toolkit defaultToolkit = Toolkit.getDefaultToolkit();
Clipboard systemClipboard = defaultToolkit.getSystemClipboard();
return systemClipboard;
}
}
Voici la réponse acceptée écrite de manière décorative:
Toolkit.getDefaultToolkit()
.getSystemClipboard()
.setContents(
new StringSelection(txtMySQLScript.getText()),
null
);
J'ai trouvé un meilleur moyen de le faire afin que vous puissiez obtenir une entrée dans une boîte à textes ou que quelque chose soit généré dans cette zone de texte et pouvoir cliquer sur un bouton pour le faire. Voici le code pour copier dans le presse-papiers en cours de travail (2017/2018)!
import Java.awt.datatransfer.*;
import Java.awt.Toolkit;
private void /* Action performed when the copy to clipboard button is clicked */ {
String ctc = txtCommand.getText().toString();
StringSelection stringSelection = new StringSelection(ctc);
Clipboard clpbrd = Toolkit.getDefaultToolkit().getSystemClipboard();
clpbrd.setContents(stringSelection, null);
}
// txtCommand is the variable of a text box