CLI.java
上传用户:qing5858
上传日期:2015-10-27
资源大小:6056k
文件大小:0k
源码类别:

搜索引擎

开发平台:

Java

  1. package net.javacoding.jspider.core.impl;
  2. import net.javacoding.jspider.Constants;
  3. import java.io.File;
  4. /**
  5.  * $Id: CLI.java,v 1.1 2003/03/24 16:58:35 vanrogu Exp $
  6.  */
  7. public class CLI {
  8.     public static void printSignature ( ) {
  9.         System.err.println(Constants.VERSIONSTRING);
  10.         System.err.println("Build: " + Constants.BUILDTIMESTAMP);
  11.         System.err.println("Started from " + new File("."));
  12.     }
  13. }