当前位置: 首页>>代码示例>>Java>>正文


Java Clipboard.hasString方法代码示例

本文整理汇总了Java中javafx.scene.input.Clipboard.hasString方法的典型用法代码示例。如果您正苦于以下问题:Java Clipboard.hasString方法的具体用法?Java Clipboard.hasString怎么用?Java Clipboard.hasString使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在javafx.scene.input.Clipboard的用法示例。


在下文中一共展示了Clipboard.hasString方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: paste

import javafx.scene.input.Clipboard; //导入方法依赖的package包/类
/**
 * Inserts the content from the clipboard into this text-editing area,
 * replacing the current selection. If there is no selection, the content
 * from the clipboard is inserted at the current caret position.
 */
default void paste() {
    Clipboard clipboard = Clipboard.getSystemClipboard();

    if(getStyleCodecs().isPresent()) {
        Tuple2<Codec<PS>, Codec<StyledSegment<SEG, S>>> codecs = getStyleCodecs().get();
        Codec<StyledDocument<PS, SEG, S>> codec = ReadOnlyStyledDocument.codec(codecs._1, codecs._2, getSegOps());
        DataFormat format = dataFormat(codec.getName());
        if(clipboard.hasContent(format)) {
            byte[] bytes = (byte[]) clipboard.getContent(format);
            ByteArrayInputStream is = new ByteArrayInputStream(bytes);
            DataInputStream dis = new DataInputStream(is);
            StyledDocument<PS, SEG, S> doc = null;
            try {
                doc = codec.decode(dis);
            } catch (IOException e) {
                System.err.println("Codec error: Failed to decode '" + codec.getName() + "':");
                e.printStackTrace();
            }
            if(doc != null) {
                replaceSelection(doc);
                return;
            }
        }
    }

    if (clipboard.hasString()) {
        String text = clipboard.getString();
        if (text != null) {
            replaceSelection(text);
        }
    }
}
 
开发者ID:FXMisc,项目名称:RichTextFX,代码行数:38,代码来源:ClipboardActions.java

示例2: getClipboardContents

import javafx.scene.input.Clipboard; //导入方法依赖的package包/类
private String getClipboardContents() {
	final Clipboard clipboard = Clipboard.getSystemClipboard();
	return clipboard.hasString()? clipboard.getString() : EMPTY_CONTENT;
}
 
开发者ID:veroslav,项目名称:jfx-torrent,代码行数:5,代码来源:UrlLoaderWindow.java


注:本文中的javafx.scene.input.Clipboard.hasString方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。