search
HomeJavajavaTutorialHow to solve the problem that javac cannot find the java file

How to solve the problem that javac cannot find the java file

An error occurred:

How to solve the problem that javac cannot find the java file

Solution:

1. First enter the directory where the java file is located;

How to solve the problem that javac cannot find the java file

Use cd folder\folder\......\;

The directory where the editor's file is located is: eclipse-workspace\word.project\src\word;

How to solve the problem that javac cannot find the java file

2. After entering the directory, enter the javac file name .java is enough:

How to solve the problem that javac cannot find the java file

# Compiled successfully.

Summary:

(1) First enter the directory where the java file is located; use cd package\package...\ to enter.

(2) After entering the directory, enter javac file name.java.

PHP Chinese website has a large number of free JAVA introductory tutorials, everyone is welcome to learn!

The above is the detailed content of How to solve the problem that javac cannot find the 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
Javac和Java的区别Javac和Java的区别Oct 25, 2023 pm 02:54 PM

Javac和Java的区别主要体现在功能、参数配置、使用场景、编译过程与执行过程、交互性和版本兼容性等方面。详细介绍:1、功能,Javac是Java编译器,它的主要功能是将Java源代码编译成字节码,以生成可执行的Class文件,Java命令则是Java运行时环境的一部分,它的主要功能是执行Java程序或者jar包;2、参数配置,Javac和Java的参数配置也有所不同等等。

win10如何解决gpedit.msc找不到的问题win10如何解决gpedit.msc找不到的问题Dec 29, 2023 pm 03:13 PM

我们在使用win10系统的时候,有些情况下需要通过运行中打开gpedit.msc服务来进行一些操作。但是如果出现了找不到gpedit.msc服务的提示,针对这个问题,小编认为可能是控制面板中的快速启动需要重新设置一下,还有一种可能就是使用的是家庭版的win10,家庭版是没有gpedit.msc功能的。具体步骤就来和小编一起看一下吧。win10找不到gpedit.msc怎么办根据不同情况,小编为大家提供了五种解决方案第一种方法gpedit.msc是用于打开组策略界面的命令,只有专业版和企业版能用组

javac不是内部或外部命令怎么回事javac不是内部或外部命令怎么回事Mar 21, 2024 pm 03:47 PM

“javac 不是内部或外部命令”错误表明系统无法识别 javac 命令。javac 是 Java 编译器,用于将 Java 源代码编译为字节码。此错误通常出现在以下情况下: * 未安装 Java 开发工具包 (JDK)。 * JDK 安装路径未添加到环境变量。

MSVCR100.dll错误的解决方法MSVCR100.dll错误的解决方法Jan 02, 2024 pm 04:13 PM

我们在打开电脑程序的时候,系统提示无法启动此程序,因为计算机中丢失MSVCR100.dll,尝试重新安装该程序以解决此问题。这是什么情况呢?因为文件丢失了,这时候不必乱下载各种插件了,直接可以在管家中找到对应的插件设置,具体的方法下面跟小编一起来看看吧。电脑管家解决MSVCR100.dll丢失的方法方法一、1、很多小伙伴遇到丢失msvcr100.dll的情况,这时候不必乱下载各种插件了,直接可以在管家中找到对应的插件设置2、打开常用属性,将其中的电脑诊断设置打开3、然后继续选择如图选项4、找到第

什么是dwmapi.dll未找到的电脑显示问题?什么是dwmapi.dll未找到的电脑显示问题?Jan 08, 2024 pm 08:45 PM

我们在使用win10操作系统电脑的时候,有的小伙伴可能会遇到系统提示没有找到dwmapi.dll组件的情况。对于这种问题小编觉得我么可以尝试在相关网站下载所缺少的组件,或者是通过第三方软件来进行安装下载,然后在我们电脑的运行中进行激活即可。具体解决方法就来看下小编是怎么做的吧~电脑显示没有找到dwmapi.dll是什么意思一、如果在运行某软件或编译程序时提示缺少、找不到dwmapi.dll等类似提示可以从相关网站下载dwmapi.dll组件拷贝到指定目录即可(一般是system系统目录或放到软件

新安装的硬盘在win10系统中无法识别新安装的硬盘在win10系统中无法识别Dec 23, 2023 pm 01:21 PM

win10电脑是当下使用最为广泛的电脑系统!但是最近很多的小伙伴们都在反映自己的win10电脑新安装的硬盘找不到怎么办?今天小编就为大家带来了win10新安装硬盘没有显示解决办法!一起来看看吧。win10新安装硬盘没有显示解决办法:解决方法:1、首先在桌面上右键”此电脑“,在弹出来的列表中找到”管理“并打开。2、在”管理“中找到并打开”磁盘管理“。3、在”磁盘管理“中找到和你所安装硬盘名字相同但无法打开的同名硬盘,并右键此硬盘,在弹出来的列表中找到”更改驱动器号和路径“并打开。4、在弹出的对话框

解决Java方法找不到(NoSuchMethodError)错误的方法解决Java方法找不到(NoSuchMethodError)错误的方法Aug 20, 2023 am 08:15 AM

解决Java方法找不到(NoSuchMethodError)错误的方法在Java开发过程中,我们经常会遇到各种错误。其中一种常见的错误是NoSuchMethodError,表示无法找到相应的方法。这种错误一般是由于版本不兼容或者依赖关系发生变化导致的。下面将介绍一些解决Java方法找不到错误的方法。检查版本兼容性NoSuchMethodError错误通常是由

win10电脑gpedit.msc找不到怎么办win10电脑gpedit.msc找不到怎么办Jul 11, 2023 pm 03:05 PM

gpedit.msc是大家常用到的一种命令,在运行里输入可以打开本地策略组编辑器,但是有的朋友遇到win10电脑gpedit.msc找不到的情况,那么电脑gpedit.msc找不到怎么办呢?下面我们来介绍win10电脑gpedit.msc找不到解决方法。win10电脑gpedit.msc找不到怎么办?具体方法如下:相信有很多朋友遇到过以下问题,那就是在输入gpedit.msc命令以后,系统提示没有找到:解决方法:1、按住快捷键WIN+R打开运行窗口,输入"regedit",这

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.