火曜日, 12月 12, 2006

Writing to/from the system clipboard in Java

You can write to/from the system clipboard in Java. For example;

1. Reading from the system clipboard

Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
Transferable contents = clipboard.getContents(null);
String buf;
if ((contents != null) && contents.isDataFlavorSupported(DataFlavor.stringFlavor))
{
try
{
buf=(String)contents.getTransferData(DataFlavor.stringFlavor);
}
catch (Exception e) {e.printStackTrace();}
}


2. Writing to the system clipboard

Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
Transferable contents = clipboard.getContents(null);
if ((contents != null) && contents.isDataFlavorSupported(DataFlavor.stringFlavor))
{
clipboard.setContents(new StringSelection(tag),null);
}

Laravel サイトのアップグレード

 Laravel のサイトをアップグレードする機会がありましたので、その方法をここで書いておきたいと思います。かなり構成というか書き方が変わってきているので注意が必要です。 1. 新しいLaravelプロジェクトの作成 まずはクリーンなLaravel環境を作成します。 compo...