1

本当に奇妙なエラー、エラーが発生しています。発生してはならないことはわかっています。

エラー:

トークン "}" の構文エラーです。両方の行でこのトークンを削除してください。

package me.itunes89.test;

import java.util.logging.Logger;

import org.bukkit.ChatColor;
import org.bukkit.command.Command;
import org.bukkit.command.CommandSender;
import org.bukkit.entity.Player;
import org.bukkit.plugin.PluginDescriptionFile;
import org.bukkit.plugin.java.JavaPlugin;

public class Test extends JavaPlugin{
    public final Logger logger = Logger.getLogger("Minecraft");
    public static Test plugin;

    @Override
    public void onDisable(){
        PluginDescriptionFile pdfFile = this.getDescription();
        this.logger.info(pdfFile.getName() + " Has been disabled!");
    }

    @Override
    public void onEnable(){
        PluginDescriptionFile pdfFile = this.getDescription();
        this.logger.info(pdfFile.getName() + " Version " + pdfFile.getVersion() + " Has been enabled!"); //You
    }
} //Here

public boolean onCommand(CommandSender sender, Command cmd, String commandLabel, String[] args)
{
    Player player = (Player) sender;
    if (commandLabel.equalsIgnoreCase("sendme"))
    {
        player.sendMessage(ChatColor.BLUE + "Sent");
    }
    return false;
} // and here

助けてくれてありがとう。

4

1 に答える 1

3

クラス スコープを閉じるのが早すぎます。ブレースを含む行を削除する必要があります。

} //Here

代わりに、ファイルの最後に移動します。

于 2012-12-05T23:25:01.860 に答える