if (messageSent.equalsIgnoreCase("is {0} my father")){
event.getChannel().sendMessage("No! I am your father!").queue();
我想在此“ if”方法中为随机单词设置{0}项,因为它没有用。例如,如果有人发送“是我父亲吗”或其他字词,它将回答“不。我是你父亲!”。有什么解决办法吗?
这是下面的“ HelloEvent.java”类的代码图像:
提前谢谢!
答案 0 :(得分:0)
使用MessageFormat替换{0}
。示例:
int planet = 7; String event = "a disturbance in the Force"; String result = MessageFormat.format( "At {1,time} on {1,date}, there was {2} on planet {0,number,integer}.", planet, new Date(), event);