Home  >  Article  >  Java  >  What is the java Dos command?

What is the java Dos command?

藏色散人
藏色散人Original
2019-04-29 13:24:314235browse

Most of the time we develop Java on Windows or Linux systems. Although using Windows does not use the command line as frequently as using Linux, we still use some commands of the DOS system from time to time during the development process.

What is the java Dos command?

DOS (disk operating system) command is a command of the DOS operating system. It is a disk-oriented operation command, which mainly includes directory operation commands and disk operation commands. , file operation commands and other commands.

Our commonly used DOS commands are as follows:

  • dir: List the files and folders in the current directory

  • md: Create a directory

  • rd: Delete a directory

  • cd: Enter the specified directory

  • del: Delete file

  • copy: Copy file

  • xcopy: Copy directory

  • tree : List the directory tree

  • ren: Rename the file

  • type: Display the file content

  • ## cls: Clear screen

  • exit: Exit the DOS command line

Related recommendations: "

Java Tutorial"

The above is the detailed content of What is the java Dos command?. 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:What is multithreadingNext article:What is multithreading