本文整理了Java中net.sf.saxon.Query.doQuery
方法的一些代码示例,展示了Query.doQuery
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Query.doQuery
方法的具体详情如下:
包路径:net.sf.saxon.Query
类名称:Query
方法名:doQuery
[英]Support method for main program. This support method can also be invoked from subclasses that support the same command line interface
[中]主程序的支持方法。这个支持方法也可以从支持相同命令行接口的子类调用
代码示例来源: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> ><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> ><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> ><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> ><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");
}
内容来源于网络,如有侵权,请联系作者删除!