一种方式是通过调用ClientGlobal类的初始化方法对配置文件进行加载,另一种是通过调用API逐一设置配置参数。后一种方式对于使用Zookeeper等加载属性的方式很方便。
1. 加载配置文件:
[java] view plaincopyprint?
- String configFileName = "conf/dfs-client.conf";
- try {
- ClientGlobal.init(configFileName);
String configFileName = "conf/dfs-client.conf"; try { ClientGlobal.init(configFileName);
2. 主动设置配置参数:
[java] view plaincopyprint?
- //连接超时的时限,单位为毫秒
- ClientGlobal.setG_connect_timeout(2000);
- //网络超时的时限,单位为毫秒
- ClientGlobal.setG_network_timeout(30000);
- ClientGlobal.setG_anti_steal_token(false);
- //字符集
- ClientGlobal.setG_charset("UTF-8");
- ClientGlobal.setG_secret_key(null);
- //HTTP访问服务的端口号
- ClientGlobal.setG_tracker_http_port(7271);
- //Tracker服务器列表
- InetSocketAddress[] tracker_servers = new InetSocketAddress[szTrackerServers.length];
- tracker_servers[0] = "200.200.200.200:8080";
- tracker_servers[1] = "200.200.201.200:8080";
- tracker_servers[2] = "200.200.202.200:8080";
- ClientGlobal.setG_tracker_group(new TrackerGroup(trackerServers));
//连接超时的时限,单位为毫秒 ClientGlobal.setG_connect_timeout(2000); //网络超时的时限,单位为毫秒 ClientGlobal.setG_network_timeout(30000); ClientGlobal.setG_anti_steal_token(false); //字符集 ClientGlobal.setG_charset("UTF-8"); ClientGlobal.setG_secret_key(null); //HTTP访问服务的端口号 ClientGlobal.setG_tracker_http_port(7271); //Tracker服务器列表 InetSocketAddress[] tracker_servers = new InetSocketAddress[szTrackerServers.length]; tracker_servers[0] = "200.200.200.200:8080"; tracker_servers[1] = "200.200.201.200:8080"; tracker_servers[2] = "200.200.202.200:8080"; ClientGlobal.setG_tracker_group(new TrackerGroup(trackerServers));
3. 参数含义
connect_timeout,连接超时时间
network_timeout,网络超时时间
anti_steal_token,防盗链Token
charset,字符集
secret_key,密钥
tracker_http_port,Tracker Server提供HTTP服务的端口
tracker_group,Tracker Server Group的地址列表
时间: 2024-10-10 21:29:29