Home>Article>Java> javac cannot find .java file

javac cannot find .java file

angryTom
angryTom Original
2020-02-04 09:12:50 3912browse

javac cannot find .java file

javac cannot find the .java file

1. Problem description

I just started Java. When I used javac to compile the .java file, I encountered the problem that the file cannot be found, as shown in the following figure:

javac cannot find .java file

2. Problem causes and solutions

1. When writing Java source code with Notepad, there is a .txt hidden suffix

Solution: Open Folder Options-> Check the file extension-> Rename the Java file to delete the .txt suffix.

2. The current compilation path is not the Java class path

Solution: Use cd to switch to the correct Java class storage path.

3. The main() method is not defined in the Java class or there is an error in the defined main() method

Solution: Check whether main() is correct.

(Related video tutorial sharing:java video tutorial)

The above is the detailed content of javac cannot find .java file. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:How to generate jar in java Next article:How to generate jar in java