eclipse ubuntu 18.04安装java.lang.ClassNotFoundException:

时间:2018-05-19 08:27:05

标签: java eclipse installation ubuntu-18.04

安装了eclipse和Java8。但它不起作用。 尝试在发生错误后运行它。

发生了错误。看日志文件 /home/shield/.eclipse/org.eclipse.platform_3.8_155965261/configuration/1526718159168.log

我检查了日志文件并找到了这些行:

public class MainActivity extends Activity {
    private MediaPlayer ourPlayer;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ourPlayer = MediaPlayer.create(this, R.raw.beer03);
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        ourPlayer.release(); // Free native resources
    }

    public void play(View ignored) {
        try {
            if (ourPlayer.isPlaying() || isPlaybackPaused()) {
                ourPlayer.stop();
                ourPlayer.prepare();
            }
            player.start();
        } catch (IOException e) {
            Log.i("SFX", "error:" + e.toString());
        }
    }

    private boolean isPlaybackPaused() {
        // TODO
    }
}

1 个答案:

答案 0 :(得分:0)

刚刚遇到与Ubuntu 18.04相同的问题。不知道具体的答案,但直接从eclipse.org(C / C ++安装程序)重新安装eclipse-cpp-oxygen-3a-linux-gtk-x86_64.tar.gz进展顺利。没有更多的问题。 在Ubuntu 16.04上安装,也没有找到synaptic安装的问题。 所以,只需在最新的Ubuntu中使用eclipse安装程序。