Search:

Type: Posts; User: Kewish

Page 1 of 5 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    7
    Views
    1,146

    accessors and modifier method tutorials?

    Mutators and also 'setters' (edit: too slow)
  2. Re: Greetings from Sunny^H^H^H^H^H Icy Pony Pasture, Virginia

    Welcome Bethany,

    Brilliant introduction and what an asset to have amongst the community.

    Welcome to JPF
  3. Replies
    9
    Views
    1,362

    How would you do it without a computer. Write out...

    How would you do it without a computer. Write out your steps in plain language on paper and be specific. Once you have that try and write these steps/tests as code.

    Keep the loop simple. Let it...
  4. Thread: Hello mates !!

    by Kewish
    Replies
    8
    Views
    991

    Re: Hello mates !!

    Thought as much, assumed it was a combo of that and the "mate" in clyxee's thread title. We'll have to chat about your visit sometime.
  5. Thread: Hello mates !!

    by Kewish
    Replies
    8
    Views
    991

    Re: Hello mates !!

    Not sure Estonia is considered down under Greg ;) unless you're a resident of Finland maybe.
  6. Thread: Hello mates !!

    by Kewish
    Replies
    8
    Views
    991

    Re: Hello mates !!

    Welcome to JPF clyxee
  7. Thread: Layout Managers

    by Kewish
    Replies
    2
    Views
    1,045

    Re: Layout Managers

    JFrame by default is BorderLayout. You want to add the painting JPanel to BorderLayout.CENTER.

    JPanels default is FlowLayout so add all your components for user interaction to a JPanel and add...
  8. Thread: Hello!

    by Kewish
    Replies
    2
    Views
    828

    Welcome to JPF Chris!

    Welcome to JPF Chris!
  9. Thread: Hey

    by Kewish
    Replies
    2
    Views
    959

    Welcome to JPF Rod22dy

    Welcome to JPF Rod22dy
  10. Thread: Hello all !

    by Kewish
    Replies
    2
    Views
    812

    Welcome to JPF Dragos

    Welcome to JPF Dragos
  11. Thread: Hi

    by Kewish
    Replies
    1
    Views
    1,123

    Welcome to JPF TeelH

    Welcome to JPF TeelH
  12. Thread: hi!!!!!

    by Kewish
    Replies
    1
    Views
    1,052

    Welcome to JPF

    Welcome to JPF
  13. Thread: Hello

    by Kewish
    Replies
    2
    Views
    1,066

    Welcome. Enjoy your journey.

    Welcome. Enjoy your journey.
  14. Replies
    4
    Views
    1,329

    Re: NEED HELP! ROOKIE JAVA USER

    Hi Alex8 and welcome to JPF.

    No one will write the code for you. What will happen if you post your code along with the problem you're having (include input, output and any exceptions/errors),...
  15. Thread: Scanner problem

    by Kewish
    Replies
    3
    Views
    1,066

    Welcome

    Welcome
  16. Thread: Scanner problem

    by Kewish
    Replies
    3
    Views
    1,066

    Clear the scanners buffer after you read a...

    Clear the scanners buffer after you read a number.

    // read a number

    sc.nextLine(); // clear buffer

    // read a String
  17. Thread: Introductions

    by Kewish
    Replies
    3
    Views
    810

    Welcome to JPF Blergle, fascinating intro. ...

    Welcome to JPF Blergle, fascinating intro.

    Enjoy your time here.
  18. Replies
    17
    Views
    1,360

    You are welcome and yes they are a vital source...

    You are welcome and yes they are a vital source of information.
  19. Replies
    17
    Views
    1,360

    Do you what whitespace in your text file? I.E....

    Do you what whitespace in your text file?

    I.E. blank lines
  20. Replies
    17
    Views
    1,360

    Re: File Processing- Command Line Arguments

    Post your completed code along with any exceptions you get in the console or other output.
  21. Replies
    17
    Views
    1,360

    Re: File Processing- Command Line Arguments

    Create the File Object first. Then the Scanner with your newly created File object. Forget about DataInputStream. You will be using the Scanner.

    --- Update ---

    Here's a post from our very own...
  22. Replies
    6
    Views
    1,118

    Re: I have a question.

    FileNotFoundException will mean that it cannot find the file or it doesn't exist in that directory.

    What is the path to your file?
    What are you typing in for your input?

    the path can be...
  23. Replies
    17
    Views
    1,360

    args is the array of command line arguments. ...

    args is the array of command line arguments.

    args [0] is a value from the array. And the datatype is a String.

    Can you constuct a File object with that information? Yep.
  24. Replies
    17
    Views
    1,360

    Yep and what is args [0]???

    Yep and what is args [0]???
  25. Replies
    17
    Views
    1,360

    Re: File Processing- Command Line Arguments

    Not InputStream itself, what did you pass to it rather?

    What does File take in the contructor? Read here File Class - Constructor
    What is args[0]??
Results 1 to 25 of 113
Page 1 of 5 1 2 3 4