当前位置: 首页>>代码示例>>Java>>正文


Java TrackerServer.close方法代码示例

本文整理汇总了Java中org.csource.fastdfs.TrackerServer.close方法的典型用法代码示例。如果您正苦于以下问题:Java TrackerServer.close方法的具体用法?Java TrackerServer.close怎么用?Java TrackerServer.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.csource.fastdfs.TrackerServer的用法示例。


在下文中一共展示了TrackerServer.close方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import org.csource.fastdfs.TrackerServer; //导入方法依赖的package包/类
/**
* entry point
* @param args comand arguments
*     <ul><li>args[0]: config filename</li></ul>
*     <ul><li>args[1]: local filename to upload</li></ul>
*/
public static void main(String args[]) {
    if (args.length < 2) {
        System.out.println("Error: Must have 2 parameters, one is config filename, "
            + "the other is the local filename to upload");
        return;
    }

    System.out.println("java.version=" + System.getProperty("java.version"));

    String conf_filename = args[0];
    String local_filename = args[1];

    try {
        ClientGlobal.init(conf_filename);
        System.out.println("network_timeout=" + ClientGlobal.g_network_timeout + "ms");
        System.out.println("charset=" + ClientGlobal.g_charset);

        TrackerClient tracker = new TrackerClient();
        TrackerServer trackerServer = tracker.getConnection();
        StorageServer storageServer = null;
        StorageClient1 client = new StorageClient1(trackerServer, storageServer);

        NameValuePair[] metaList = new NameValuePair[1];
        metaList[0] = new NameValuePair("fileName", local_filename);
        String fileId = client.upload_file1(local_filename, null, metaList);
        System.out.println("upload success. file id is: " + fileId);

        int i = 0;
        while (i++ < 10) {
            byte[] result = client.download_file1(fileId);
            System.out.println(i + ", download result is: " + result.length);
        }

        trackerServer.close();
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}
 
开发者ID:iBase4J,项目名称:iBase4J-Common,代码行数:45,代码来源:Test.java

示例2: main

import org.csource.fastdfs.TrackerServer; //导入方法依赖的package包/类
/**
* entry point
* @param args comand arguments
*     <ul><li>args[0]: config filename</li></ul>
*     <ul><li>args[1]: local filename to upload</li></ul>
*/
 public static void main(String args[])
 {
 	if (args.length < 2)
 	{
 		System.out.println("Error: Must have 2 parameters, one is config filename, "
 		                 + "the other is the local filename to upload");
 		return;
 	}
 	
 	System.out.println("java.version=" + System.getProperty("java.version"));
 	  
 	String conf_filename = args[0];
 	String local_filename = args[1];
 	
 	try
 	{
 		ClientGlobal.init(conf_filename);
 		System.out.println("network_timeout=" + ClientGlobal.g_network_timeout + "ms");
 		System.out.println("charset=" + ClientGlobal.g_charset);

       TrackerClient tracker = new TrackerClient();
       TrackerServer trackerServer = tracker.getConnection();
       StorageServer storageServer = null;
       StorageClient1 client = new StorageClient1(trackerServer, storageServer);

       NameValuePair[] metaList = new NameValuePair[1];
       metaList[0] = new NameValuePair("fileName", local_filename);
       String fileId = client.upload_file1(local_filename, null, metaList);
       System.out.println("upload success. file id is: " + fileId);

       int i = 0;
       while (i++ < 10) {
               byte[] result = client.download_file1(fileId);
               System.out.println(i + ", download result is: " + result.length);
       }
       
 		trackerServer.close();
 	}
 	catch(Exception ex)
 	{
 		ex.printStackTrace();
 	}
 }
 
开发者ID:guokezheng,项目名称:automat,代码行数:50,代码来源:Test.java


注:本文中的org.csource.fastdfs.TrackerServer.close方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。