About 695,000 results
Open links in new tab
  1. java - Error on JDoodle saying it can't find class name when I had made ...

    Apr 28, 2022 · I wanted to make a simple dice game for Java. I used an online compiler called JDoodle. After I wrote all the code, it gave me the error: Error: Could not find or load main class MyClass …

  2. inheritance - Running java on online compiler jdoodle.com and having ...

    Feb 18, 2021 · Running java on online compiler jdoodle.com and having some issues Asked 4 years, 9 months ago Modified 4 years, 9 months ago Viewed 717 times

  3. Enable "preview" features in an early-access version of Java in ...

    Jan 1, 2022 · @Kayaman Thanks for trying, but that linked page is of no help. The author there describes how to set "Language Level" settings in IntelliJ. But as I mentioned in the Question, there …

  4. java - 403 Error when sending post request to external API - Stack …

    Aug 23, 2021 · I have an Angular App that is used to compile a java program, I am using Jdoodle API for compilation, we send requests to Jdoodle and then get a response back, and that response is …

  5. How to implement jdoodle API to compile and run java programs in ...

    Dec 3, 2021 · I am creating an android app too write and run java code in an android device using Android studio we tried using the jdoodle API to compile and run the java code in the app.

  6. How to use unsupported Locale in Java 11 and numbers in …

    Dec 9, 2020 · How can I use an unsupported Locale (eg. ar-US) in JAVA 11 when I output a number via String.format ()? In Java 8 this worked just fine (try jdoodle, select JDK 1.8.0_66): Locale locale = …

  7. Import a custom class in Java - Stack Overflow

    Oct 23, 2011 · How do I import a class I wrote in a different file? All my classes are under the same package.

  8. How to compile multiple Java files together? - Stack Overflow

    Aug 1, 2021 · I'm new to java, coming from C++. I followed a tutorial to create the game Snake (done in a different IDE). I have 3 files GamePanel.java, GameFrame.java, and SnakeGame.java (this file has …

  9. ¿Se puede hacer una aplicación con Java swing en el editor online …

    Oct 22, 2020 · Estuve trabajando en el editor jdoodle para poder apoyar a los alumnos que tengo los cuales tienen problemas para instalar en sus equipos un editor como Netbeans u otro, me pareció …

  10. Java: Multiple class declarations in one file - Stack Overflow

    In Java, you can define multiple top level classes in a single file, providing that at most one of these is public (see JLS §7.6). See below for example. Is there a tidy name for this technique (