net.sf.saxon.Query.<init>()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(128)

本文整理了Java中net.sf.saxon.Query.<init>方法的一些代码示例,展示了Query.<init>的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.<init>方法的具体详情如下:
包路径:net.sf.saxon.Query
类名称:Query
方法名:<init>

Query.<init>介绍

暂无

代码示例

代码示例来源:origin: net.sf.saxon/Saxon-HE

/**
 * Main program, can be used directly from the command line.
 * <p>The format is:</p>
 * <p>java net.sf.saxon.Query [options] <i>query-file</i> &gt;<i>output-file</i></p>
 * <p>followed by any number of parameters in the form {keyword=value}... which can be
 * referenced from within the query.</p>
 * <p>This program executes the query in query-file.</p>
 *
 * @param args List of arguments supplied on operating system command line
 */
public static void main(String args[]) {
  // the real work is delegated to another routine so that it can be used in a subclass
  new Query().doQuery(args, "java net.sf.saxon.Query");
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.saxon

/**
 * Main program, can be used directly from the command line.
 * <p>The format is:</p>
 * <p>java net.sf.saxon.Query [options] <i>query-file</i> &gt;<i>output-file</i></p>
 * <p>followed by any number of parameters in the form {keyword=value}... which can be
 * referenced from within the query.</p>
 * <p>This program executes the query in query-file.</p>
 *
 * @param args List of arguments supplied on operating system command line
 */
public static void main(String args[]) {
  // the real work is delegated to another routine so that it can be used in a subclass
  new Query().doQuery(args, "java net.sf.saxon.Query");
}

代码示例来源:origin: net.sourceforge.saxon/saxon

/**
 * Main program, can be used directly from the command line.
 * <p>The format is:</P>
 * <p>java net.sf.saxon.Query [options] <I>query-file</I> &gt;<I>output-file</I></P>
 * <p>followed by any number of parameters in the form {keyword=value}... which can be
 * referenced from within the query.</p>
 * <p>This program executes the query in query-file.</p>
 *
 * @param args List of arguments supplied on operating system command line
 * @throws Exception Indicates that a compile-time or
 *                   run-time error occurred
 */
public static void main(String args[])
    throws Exception {
  // the real work is delegated to another routine so that it can be used in a subclass
  (new Query()).doQuery(args, "java net.sf.saxon.Query");
}

代码示例来源:origin: org.opengis.cite.saxon/saxon9

/**
 * Main program, can be used directly from the command line.
 * <p>The format is:</P>
 * <p>java net.sf.saxon.Query [options] <I>query-file</I> &gt;<I>output-file</I></P>
 * <p>followed by any number of parameters in the form {keyword=value}... which can be
 * referenced from within the query.</p>
 * <p>This program executes the query in query-file.</p>
 *
 * @param args List of arguments supplied on operating system command line
 * @throws Exception Indicates that a compile-time or
 *                   run-time error occurred
 */
public static void main(String args[])
    throws Exception {
  // the real work is delegated to another routine so that it can be used in a subclass
  (new Query()).doQuery(args, "java net.sf.saxon.Query");
}

相关文章