免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1990 | 回复: 0
打印 上一主题 下一主题

Review of my Java [1] [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-12-25 14:17 |只看该作者 |倒序浏览
Run my "HelloWorld"

Don't ask me why I review such easy a question. You know, it is really important for me to remember everything I have learned and used before.

In fact, when I opened the website of sun and try to find JDK, I felt very suprise that the newest version of JDK is 6, and the preview document of 7th version has come out. And when I learned Java 3 years ago, I was using JDK 1.4.1. On my goodness.

Ok, let's begin our note.
First of all, we need to install JDK and set up the enviroment variables.
for “Path", we need to add the address of javac.exe and put a semicolon after it.
for classpath, the easiest way is add ".\"for it.

After that, we could start to write our program.
The oldest and easiest way ot writing a Java program is using the Notepad.

Create a file with the same name of the class, for example, HelloWorld.java. Make sure to capitalize the same characters in both the file name and the class name.

public class HelloWorld
{
   public static void main(String args[])
   {
        System.out.println("Hello!");
   }
}

When compile it, open the DOS-Mode and come into the directory of the class we create and use command "javac" to compile it.

javac HelloWorld.java

If nothing comes out except a blank line, that means everything goes ok and the file "HelloWorld.class" has been generated.

and then run the class:

java HelloWorld

then the String "Hello" should be shows out.

If not, please check the eviroment variables. What I should mention is we run it with "java HelloWorld" but not "java HelloWorld.class" and that also means we never use .class during the process of our programming.

I've download the Eclipse on my computer and I'll try to use it tomorrow.


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u2/70919/showart_2130586.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP