Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
ph34r my 133t j4v4 h4><0r1ng sk177z
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
Originally posted by Ernest Friedman-Hill:
The drag-and-drop thing is just going to make a mess -- don't do it.
The "%" in the one example is a Macintosh (i.e., UNIX) system prompt. Don't type it. Just pretend it says "C:\> javac ..." instead!
Now: if you type "javac Foo.java" and you see an "Unrecognized command or filename" this just means that the JDK isn't on your path. Open your "system" control panel, and add "c:\jdk1.5.0_04\bin" to your PATH environment variable. Note that PATH entries are separated by a ";" (semicolon). Then open a new command window, and type "javac". It should show you usage information. If it doesn't, you didn't do the PATH thing correctly; go back and try again.
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Originally posted by Rick Beaver:
You need to add the javac command to your PATH variable (assumin you have installed the JDK)
If you are on Windoze right click "My Computer", Click "Advanced" then "Environment Variables"
In here you can edit your system and user variables. Find the one that is called path and append the path to the "bin" directory of your java development kit (It is a top level directory in the location where you installed your JDK).
You append the path by putting a semi-colon at the end of the PATH variable String followed by the path to your JDK (mine would be ;C:\jdk5\bin)
Open a new DOS prompt and type javac and it should work.
Happy compiling
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Originally posted by Nigel Browne:
Are you 100% sure nothing happened? Have you looked for the newly created myfirstapp.class file?
It is this file that is run in the JVM.
Command line is synonymous with DOS Prompt. Developers working on unix/linux or mac platforms dont have a dos prompt but a command line prompt.
If you open a dos prompt and type javac followed by pressing the enter button what do you get in response?
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Originally posted by Elwal Vador:
OK I right cliked on my computer but there is no 'advanced' tab I'm using windows 98.
ph34r my 133t j4v4 h4><0r1ng sk177z
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Thanks & regards, Srini
MCP, SCJP-1.4, NCFM (Financial Markets), Oracle 9i - SQL ( 1Z0-007 ), ITIL Certified
Originally posted by Srinivasa Raghavan:
What you can do is , Since it's Win 98, update the autoexec.bat file
Check whether you have any line like Path=%Path%;C:\windows...
If you find that then append your jdk\bin path to the PATH variable. ( as mentioned in the above posts ).
Before Updating the autoexec.bat better take a back up of it & proceed.
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Thanks & regards, Srini
MCP, SCJP-1.4, NCFM (Financial Markets), Oracle 9i - SQL ( 1Z0-007 ), ITIL Certified
JavaBeginnersFaq
"Yesterday is history, tomorrow is a mystery, and today is a gift; that's why they call it the present." Eleanor Roosevelt
Originally posted by Srinivasa Raghavan:
I'm not sure which auto exec your are using.
What you need to do is .Update your path as mentioned in the above post.
Like Set Path = %PATH%;C:\your JDK\bin\";
First you try this command in a Console, then compile your java code. if it worked then Update your path Permanently through autoexec. But TAKE A BACKUP of the file before updating it. If you are updating the bat file be careful that you are not messing it, else it 'll cause problem in OS.
[ July 28, 2005: Message edited by: Srinivasa Raghavan ]
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Originally posted by Marilyn de Queiroz:
Win 9x: Change your PATH in your C:\autoexec.bat file
Type "javac" (nothing else)
Does it give you a "help" screen? or an error like "command not found"?
You need to get javac to work before you can do anything else.
[ July 28, 2005: Message edited by: Marilyn de Queiroz ]
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Thanks & regards, Srini
MCP, SCJP-1.4, NCFM (Financial Markets), Oracle 9i - SQL ( 1Z0-007 ), ITIL Certified
Java experience, about 1 week (Reading Head First Java).
C++ experience, took a class in high school, really had no use for programming languages at that age, barely learned anything.
HTML basic experience, basic text/image formating, and basic CSS style sheets.
Now, I want to learn Java to creat my own Stock Trading platform.
Originally posted by Elwal Vador:
it says "Syntax error"