本文整理汇总了Java中org.csource.fastdfs.ClientGlobal类的典型用法代码示例。如果您正苦于以下问题:Java ClientGlobal类的具体用法?Java ClientGlobal怎么用?Java ClientGlobal使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ClientGlobal类属于org.csource.fastdfs包,在下文中一共展示了ClientGlobal类的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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);
}
示例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);
}
示例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();
}
}
示例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();
}
}
示例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();
}
}
示例6: setConfigFile
import org.csource.fastdfs.ClientGlobal; //导入依赖的package包/类
public void setConfigFile(String configFile) throws FileNotFoundException, IOException, MyException {
this.configFile = configFile;
ClientGlobal.init(this.configFile);
}
示例7: setConfigIs
import org.csource.fastdfs.ClientGlobal; //导入依赖的package包/类
public void setConfigIs(InputStream configIs) throws IOException, MyException {
this.configIs = configIs;
ClientGlobal.init(this.configIs);
}
示例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();
}
}
示例9: initFastDFSClient
import org.csource.fastdfs.ClientGlobal; //导入依赖的package包/类
private static void initFastDFSClient() throws MyException {
String[] szTrackerServers;
String[] parts;
ClientGlobal.g_connect_timeout = PropertiesUtil.getInt("fastDFS.connect_timeout",
ClientGlobal.DEFAULT_CONNECT_TIMEOUT);
if (ClientGlobal.g_connect_timeout < 0) {
ClientGlobal.g_connect_timeout = ClientGlobal.DEFAULT_CONNECT_TIMEOUT;
}
ClientGlobal.g_connect_timeout *= 1000; // millisecond
ClientGlobal.g_network_timeout = PropertiesUtil.getInt("fastDFS.network_timeout",
ClientGlobal.DEFAULT_NETWORK_TIMEOUT);
if (ClientGlobal.g_network_timeout < 0) {
ClientGlobal.g_network_timeout = ClientGlobal.DEFAULT_NETWORK_TIMEOUT;
}
ClientGlobal.g_network_timeout *= 1000; // millisecond
ClientGlobal.g_charset = PropertiesUtil.getString("fastDFS.charset");
if (ClientGlobal.g_charset == null || ClientGlobal.g_charset.length() == 0) {
ClientGlobal.g_charset = "ISO8859-1";
}
szTrackerServers = PropertiesUtil.getString("fastDFS.tracker_server").split(",");
if (szTrackerServers == null) {
throw new MyException("item \"tracker_server\" in not found");
}
InetSocketAddress[] tracker_servers = new InetSocketAddress[szTrackerServers.length];
for (int i = 0; i < szTrackerServers.length; i++) {
parts = szTrackerServers[i].split("\\:", 2);
if (parts.length != 2) {
throw new MyException(
"the value of item \"tracker_server\" is invalid, the correct format is host:port");
}
tracker_servers[i] = new InetSocketAddress(parts[0].trim(), Integer.parseInt(parts[1].trim()));
}
ClientGlobal.g_tracker_group = new TrackerGroup(tracker_servers);
ClientGlobal.g_tracker_http_port = PropertiesUtil.getInt("fastDFS.http.tracker_http_port", 80);
ClientGlobal.g_anti_steal_token = PropertiesUtil.getBoolean("fastDFS.http.anti_steal_token", false);
if (ClientGlobal.g_anti_steal_token) {
ClientGlobal.g_secret_key = PropertiesUtil.getString("fastDFS.http.secret_key");
}
}