好吧,我已经开始研究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