|
||||||
| Java Help Java Help forum discussing all Java platforms - J2ME, J2SE and J2EE - as well as relevant standards, APIs and frameworks such as Swing, Servlets, JSPs, Applets, Struts, Spring, Hibernate, ANT, EJB, and other Java-related topics. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||||
|
Welcome to our Forums.... But maybe you should have looked on their site also while you were at it. I am guessing you are having a problem like they are stating here.
http://download.java.net/jdk6/binaries/ Also check this out. http://gcc.gnu.org/ml/java-patches/2.../msg00006.html
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum | My Company Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall ![]() |
|
|||||
|
Are you making command line in DOS or on another platform?
Here is a good tutorial on command line: http://java.sun.com/docs/books/tutor...dLineArgs.html
__________________
CodeCall Blog | CodeCall Wiki | Shareware Site | Linux Forum | Write a Blog Don't hesitate to ask any questions that you have! Check out our ASCII Calculator! |
|
|||||
|
It depends on what your operating system is. The short answer is that you have to set your path.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall |
| Sponsored Links |
|
|
|
|||||
|
u can forget obout that post about windows xp ive finally figured out how to set the path variable ,thanks to your words of advice and me doing some research on my own, i can now start my java programming career using sams "teach yourself java programming in 24 hours along with the guidance of my programming gods and masters in this forum. (teach me guys! i hope to be as good as u some day!)
![]() |
|
|||||
|
Quote:
__________________
CodeCall Blog | CodeCall Wiki | Shareware Site | Linux Forum | Write a Blog Don't hesitate to ask any questions that you have! Check out our ASCII Calculator! |
|
|||||
|
since i started reading the book ive written a few simple applications and applets....currently im on my sevent hour where im learning how to use Conditional Tests to Make Decisions, and so far ive learned how to use variables and strings in programs...but im havinga little problem with the use of methods. could u explain that a little for me?
![]() |
|
|||||
|
Sure, what do you want to know about methods? What are you having problems with?
A method is a function. You use methods wherever you will need to call the same set of code multiple times. Here is a C++ method Code:
void HelloWorld()
{
cout << "Hello World";
}
Code:
HelloWorld Code:
import java.awt.*;
import java.applet.*;
public class calculation extends Applet
{ int first, answer;
public void paint (Graphics g)
{
first = 34;
calculation();
g.drawString("Twice 34 is " + answer, 10, 25);
}
public void calculation ()
{
answer = first * 2;
}
}
__________________
Lop |
| Sponsored Links |
|
|
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Problems in GETMEM.INC with newer WinXP security updates. | dima_q | Pascal/Delphi | 0 | 06-04-2007 09:17 AM |
| Problems in compiling D-ITG | MietitoreDAnime | C and C++ | 2 | 02-15-2007 11:18 AM |
| Problems with Google? | Void | Marketing | 4 | 07-23-2006 07:12 PM |
| OnMouseMove problems | Lop | C and C++ | 3 | 06-27-2006 03:42 PM |
| John | ........ | 223.00000 |
| dargueta | ........ | 168.00000 |
| Xav | ........ | 164.00000 |
| gaylo565 | ........ | 18.00000 |
| WingedPanther | ........ | 15.00000 |
| |pH| | ........ | 15.00000 |
| Johnnyboy | ........ | 3.00000 |
| navghost | ........ | 1.00000 |
Goal: 100,000 Posts
Complete: 65%