SplitCaller.java
上传用户:sunhttp
上传日期:2013-04-01
资源大小:2176k
文件大小:0k
源码类别:

词法分析

开发平台:

Java

  1. package com.blogever.RssReader;
  2. public class SplitCaller {
  3.   private SplitCaller() {
  4.   }
  5.   public static native String split(String source,int outFarmat, int operType);
  6.   public static void main (String[] args){
  7. String source = "这只是一个测试实例";
  8. System.out.println(split(source,0,0));
  9.   }
  10.   static{
  11.     System.loadLibrary("Split");
  12.   }
  13. }