本文整理汇总了Java中java.awt.datatransfer.SystemFlavorMap.encodeJavaMIMEType方法的典型用法代码示例。如果您正苦于以下问题:Java SystemFlavorMap.encodeJavaMIMEType方法的具体用法?Java SystemFlavorMap.encodeJavaMIMEType怎么用?Java SystemFlavorMap.encodeJavaMIMEType使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类java.awt.datatransfer.SystemFlavorMap
的用法示例。
在下文中一共展示了SystemFlavorMap.encodeJavaMIMEType方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initMappings
import java.awt.datatransfer.SystemFlavorMap; //导入方法依赖的package包/类
public void initMappings() throws Exception {
//initialize mapping variables used in this test
//create a DataFlavor from Button class
test_flavor1 = new DataFlavor(Class.forName("java.awt.Button"), "Button");
//create an Encoded String native using Button class MIME Type
String buttonMIME = test_flavor1.getMimeType();
test_encoded = SystemFlavorMap.encodeJavaMIMEType(buttonMIME);
//create a DataFlavor from the Encoded String native
test_flavor2 = SystemFlavorMap.decodeDataFlavor(test_encoded);
//create and initialize DataFlavor arrays
test_flavors_set = new DataFlavor[] {test_flavor1};
//create and initialize String native arrays
test_natives_set = new String[] {test_encoded};
}
示例2: initMappings
import java.awt.datatransfer.SystemFlavorMap; //导入方法依赖的package包/类
public void initMappings() throws Exception {
//initialize mapping variables used in this test
//create an Unencoded String native
test_native1 = "TEST1";
//create a DataFlavor from Button class
test_flavor1 = new DataFlavor(Class.forName("java.awt.Button"), "Button");
//create an Encoded String native using Button class MIME Type
String buttonMIME = test_flavor1.getMimeType();
test_encoded = SystemFlavorMap.encodeJavaMIMEType(buttonMIME);
//create a DataFlavor from the Encoded String native
test_flavor2 = SystemFlavorMap.decodeDataFlavor(test_encoded);
//create and initialize DataFlavor arrays
test_flavors_set = new DataFlavor[] {test_flavor2};
//create and initialize String native arrays
test_natives_set = new String[] {test_encoded};
}