Pirc机器人没有连接到配置文件中的通道设置?

时间:2012-02-16 11:29:47

标签: java properties irc

好吧,我已经开始研究IRC机器人了,我遇到了一个小问题。当我使用配置值进行连接时,它不起作用。

 bot.connect(conf.LoadPropertyKey("irc.server"));
 bot.joinChannel(conf.LoadPropertyKey("irc.channel").toString());

我收到此错误:

 Exception in thread "main" java.net.ConnectException: Connection refused: connect

然而,当我自己将这些值放入时:

 bot.connect("webchat.quakenet.org");
 bot.joinChannel("#tinyblog");

有人在这里我错了吗?

我的配置文件如下:

 #Default properties for adil-bot, a java irc bot

 #bot configuration

 bot.name=Adil's bot
 bot.gender=male

 #irc channel configuration

 irc.server=webchat.quakenet.org
 irc.channel=#tinyblog

0 个答案:

没有答案