⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 componenttour.java

📁 FMJ(freedom media for java)是java视频开发的新选择
💻 JAVA
字号:
package net.sf.fmj.qt.utils;import quicktime.QTException;import quicktime.std.comp.ComponentDescription;import quicktime.std.comp.ComponentIdentifier;import quicktime.util.QTUtils;public class ComponentTour{	  public static void main (String[  ] args) {	      try {	          QTSessionCheck.check( );	          /* use this wildcard to show all components in QT	          */	          ComponentDescription wildcard =	              new ComponentDescription( ); 	          ComponentIdentifier ci = null;	          while ( (ci = ComponentIdentifier.find(ci, wildcard)) != null) {	              ComponentDescription cd = ci.getInfo( );	              System.out.println (cd.getName( ) + 	                                  " (" + 	                                  QTUtils.fromOSType (cd.getType( )) +	                                  "/" +	                                  QTUtils.fromOSType (cd.getSubType( )) +	                                  ") " + 	                                  cd.getInformationString( ));	          }	          	      } catch (QTException qte) {	          qte.printStackTrace( );	      }	  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -