我在使用 this website 的说明将JDK安装到Windows上的第6步。
当我尝试通过键入“c:”将“当前驱动器设置为保存源文件Hello.java的驱动器”时,没有任何反应(说明表明应该出现类似C:\ xxx>的内容)。
我已将hello world文件保存在C:目录中,如上一步(步骤5)所示。
我正在尝试开始学习Java,我们将不胜感激。
答案 0 :(得分:2)
我建议你去学习像eclipse或Netbeans这样的IDE来学习Java,因为你正在学习你应该更多地关注语言基础而不是配置尝试使用Eclipse IDE开源,非常适合Java开发和我的偏好。 / p>
http://www.eclipse.org/downloads/packages/eclipse-ide-java-ee-developers/marsr
试试这个让Hello world变得轻松的链接
http://www.java-made-easy.com/java-hello-world.html
写一个" Hello World"程序遵循以下步骤:
Start Eclipse.
Create a new Java Project:
File->New->Project.
Select "Java" in the category list.
Select "Java Project" in the project list. Click "Next".
Enter a project name into the Project name field, for example, "Hello World Project".
Click "Finish"--It will ask you if you want the Java perspective to open. (You do.)
Create a new Java class:
Click the "Create a Java Class" button in the toolbar. (This is the icon below "Run" and "Window" with a tooltip that says "New Java Class.")
Enter "HelloWorld" into the Name field.
Click the checkbox indicating that you would like Eclipse to create a "public static void main(String[] args)" method.
Click "Finish".
A Java editor for HelloWorld.java will open. In the main method enter the following line.
System.out.println("Hello World");
Save using ctrl-s. This automatically compiles HelloWorld.java.
Click the "Run" button in the toolbar (looks like a little man running).
You will be prompted to create a Launch configuration. Select "Java Application" and click "New".
Click "Run" to run the Hello World program. The console will open and display "Hello World".
答案 1 :(得分:1)
您需要输入此命令以导航到C:\ drive(我不确定这是否区分大小写,只是为了安全保持区分大小写)
cd C:\
之后输入
dir
确认您的文件是否存在。
然后使用javac编译
答案 2 :(得分:1)
创建一个目录(例如C:\ myjava),然后将Hello.java文件保存在myjava文件夹中。打开命令提示符并键入cd c:\ myjava。然后输入javac Hello.java来编译代码。
答案 3 :(得分:0)
1)安装JDK后,确保设置Java_Home路径。 Find it Here!
2)之后,在Desktop创建一个新文件,并将其命名为#34; MyFirstJavaProgram.java"
3)右键单击并在记事本中打开新创建的文件。 4)将以下代码插入其中。
public class MyFirstJavaProgram {
/* This is my first java program.
* This will print 'Hello World' as the output
*/
public static void main(String []args) {
System.out.println("Hello World"); // prints Hello World
}
}
5)要编译该程序,请打开命令提示符并浏览其当前的Desktop路径。
6)编写命令"javac MyFirstJavaProgram.java"
7)观察程序写入命令"java MyFirstJavaProgram"
的输出,输出将在控制台上。
答案 4 :(得分:0)
您需要输入以下命令:
C:\Users>cd\
它将导航到C:驱动器,然后应用命令导航到保存源文件的文件夹C:\ xxx
C:\ >cd xxx
然后你会得到..
C:\xxx>