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

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

本文整理了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

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

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

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

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

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

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

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

相关文章