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


Java ClientGlobal.init方法代码示例

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


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

示例1: afterPropertiesSet

import org.csource.fastdfs.ClientGlobal; //导入方法依赖的package包/类
@Override
public void afterPropertiesSet() throws Exception {
  log.debug("准备加载FastDFS配置文件:{}", localConfigurePath);
  if (localConfigurePath == null) {
    throw new Exception("本地FastDFS配置文件不能为空,需要指定为某个具体的文件资源");
  }
  if (localConfigurePath.getFile() == null) {
    throw new Exception("本地FastDFS配置文件不存在,需要指定为某个具体的文件资源");
  }
  ClientGlobal.init(localConfigurePath.getFile().getAbsolutePath());
  log.debug("已加载FastDFS配置文件");
  File localTempPath = new File(localTempFilePath);
  if (!localTempPath.exists()) {
    localTempPath.mkdirs();
  }
  poolConfig.setMaxTotal(1000);//
  poolConfig.setMaxIdle(100); // 最多多少个空闲的
  poolConfig.setMinIdle(100);
  poolConfig.setMaxWaitMillis(10000);
  poolConfig.setTestOnBorrow(true);
  poolConfig.setTestOnReturn(true);
  genericObjectPool.setConfig(poolConfig);
  AbstractFileProcessor.initFastDFSService(this);
}
 
开发者ID:devpage,项目名称:fastdfs-quickstart,代码行数:25,代码来源:FastDFSService.java

示例2: afterPropertiesSet

import org.csource.fastdfs.ClientGlobal; //导入方法依赖的package包/类
@Override
public void afterPropertiesSet() throws Exception {
	File confFile = File.createTempFile("fastdfs", ".conf");
	PrintWriter confWriter = new PrintWriter(new FileWriter(confFile));
	confWriter.println("tracker_server=" + trackerServer);
	confWriter.close();
	ClientGlobal.init(confFile.getAbsolutePath());
	confFile.delete();
	TrackerGroup trackerGroup = ClientGlobal.g_tracker_group;
	trackerClient = new TrackerClient(trackerGroup);

	logger.info("Init FastDFS with tracker_server : {}", trackerServer);

}
 
开发者ID:xubinux,项目名称:xbin-store,代码行数:15,代码来源:FastdfsStorageService.java

示例3: main

import org.csource.fastdfs.ClientGlobal; //导入方法依赖的package包/类
/**
* entry point
* @param args comand arguments
*     <ul><li>args[0]: config filename</li></ul>
*/
@SuppressWarnings("rawtypes")
public static void main(String args[]) {
    if (args.length < 1) {
        System.out.println("Error: Must have 1 parameter: config filename");
        return;
    }

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

    try {
        ClientGlobal.init(args[0]);
        System.out.println("network_timeout=" + ClientGlobal.g_network_timeout + "ms");
        System.out.println("charset=" + ClientGlobal.g_charset);

        file_ids = new java.util.concurrent.ConcurrentLinkedQueue();

        for (int i = 0; i < 10; i++) {
            (new UploadThread(i)).start();
        }

        for (int i = 0; i < 20; i++) {
            (new DownloadThread(i)).start();
        }
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}
 
开发者ID:iBase4J,项目名称:iBase4J-Common,代码行数:33,代码来源:TestLoad.java

示例4: main

import org.csource.fastdfs.ClientGlobal; //导入方法依赖的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

示例5: main

import org.csource.fastdfs.ClientGlobal; //导入方法依赖的package包/类
/**
	* entry point
	* @param args comand arguments
	*     <ul><li>args[0]: config filename</li></ul>
	*/
  @SuppressWarnings("rawtypes")
public static void main(String args[])
  {
  	if (args.length < 1)
  	{
  		System.out.println("Error: Must have 1 parameter: config filename");
  		return;
  	}
  	
  	System.out.println("java.version=" + System.getProperty("java.version"));
  	  
  	try
  	{
  		ClientGlobal.init(args[0]);
  		System.out.println("network_timeout=" + ClientGlobal.g_network_timeout + "ms");
  		System.out.println("charset=" + ClientGlobal.g_charset);
  		  		
  		file_ids = new java.util.concurrent.ConcurrentLinkedQueue();
  		
  		for (int i=0; i<10; i++)
  		{
  			(new UploadThread(i)).start();
  		}
  		
  		for (int i=0; i<20; i++)
  		{
  			(new DownloadThread(i)).start();
  		}
		}
  	catch(Exception ex)
  	{
  		ex.printStackTrace();
  	}
  }
 
开发者ID:guokezheng,项目名称:automat,代码行数:40,代码来源:TestLoad.java

示例6: setConfigFile

import org.csource.fastdfs.ClientGlobal; //导入方法依赖的package包/类
public void setConfigFile(String configFile) throws FileNotFoundException, IOException, MyException {
	this.configFile = configFile;
	ClientGlobal.init(this.configFile);
}
 
开发者ID:yinwq0558,项目名称:jfdfs,代码行数:5,代码来源:JfdfsPoolConfig.java

示例7: setConfigIs

import org.csource.fastdfs.ClientGlobal; //导入方法依赖的package包/类
public void setConfigIs(InputStream configIs) throws IOException, MyException {
	this.configIs = configIs;
	ClientGlobal.init(this.configIs);
}
 
开发者ID:yinwq0558,项目名称:jfdfs,代码行数:5,代码来源:JfdfsPoolConfig.java

示例8: main

import org.csource.fastdfs.ClientGlobal; //导入方法依赖的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.ClientGlobal.init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。