Search:

Type: Posts; User: Brt93yoda

Page 1 of 13 1 2 3 4

Search: Search took 0.11 seconds.

  1. Sticky: Re: View these forums on your Android/iPhone with Tapatalk

    Whoa! I haven't been here in a long time--let's see if I can still do this. *cough cough* Anyways, I find this post quite humorous. I was just thinking about coming back to this community, and for my...
  2. Replies
    2
    Views
    950

    Re: HELP!!!!!!!!!!!!!!!!!!!!!

    HELP!!!!!!!! Will not be given to you...
  3. Replies
    9
    Views
    3,000

    Re: Can't understand why Interfaces are there

    Try designing a plugin acceptable program without them. ;)
  4. Replies
    4
    Views
    2,321

    Re: Repaint method in Thread not moving String

    while(true)
    {
    //do all of the updates

    Thread.sleep(16); //60 frames per second
    }

    sleep isn't exact, but it should work for what you're doing.
  5. Replies
    4
    Views
    2,321

    Re: Repaint method in Thread not moving String

    The way you structured that program annoys me. Anyways, in order to update the image without max/min-imizing you need an infinite loop that calls repaint().
  6. Replies
    6
    Views
    1,643

    Re: Paying for simple questions.

    @Copeg. I didn't just give him the answers. I actually tutored him.
  7. Re: How to Add ActionListener to a JButton. Java Swing

    If I'm not mistaken, frame.pack(); applies all of the changes to the content pane.
  8. Replies
    6
    Views
    1,643

    Re: Paying for simple questions.

    my msn is jedislayerofhoth@hotmail.com
  9. Replies
    6
    Views
    1,643

    Re: Paying for simple questions.

    I'm willing to do it. do you have skype?
  10. Replies
    4
    Views
    1,910

    Re: help with bookfinder programme

    Glad I could help.
  11. Replies
    6
    Views
    2,409

    Re: Java Encryption

    @xxcorrosionxx Copeg's actions are not un-just. He is a moderator of a VERY popular forum. That should be proof enough that he knows what he's talking about. All of the evidence shows that you're...
  12. Replies
    4
    Views
    12,255

    Re: Actual and Formal Parameters

    I learned them as Arguments, and Parameters. Is that incorrect -- a C++ term?
  13. Replies
    10
    Views
    3,071

    Re: Confused about my Career

    If you're a student earning their BS or MS then go here for an Internship.

    If you're not a student then try here.
    Since you have ~2 years of experience with Java I'm willing to let you join my...
  14. Thread: Java Project

    by Brt93yoda
    Replies
    11
    Views
    2,368

    Re: Java Project

    No clue who he was talking to, but okay.
  15. Thread: Java Project

    by Brt93yoda
    Replies
    11
    Views
    2,368

    Re: Java Project

    I'm willing to do it since you're paying.
    Here is my contact info.
    --E-mail: jedislayerofhoth@hotmail.com
    --Skype: brt93yoda

    You can private message me too.
  16. Re: Read A File and Store Values into a 2-Dimensional Integer Array?

    You do need to remove all of the spaces after you read the file. You can't convert the string "10 " to the int 10.



    You checked if the stream had more lines in your OP.


    while ((line =...
  17. Replies
    10
    Views
    3,071

    Re: Confused about my Career

    @DanBrown how long have you programmed in Java or in general?
  18. Replies
    7
    Views
    3,425

    Re: Calendar Program Help

    Good post Whitesoup12. I wonder why the Prof. wanted to return 0 as an error. I was taught to return -1 instead.
  19. Re: Read A File and Store Values into a 2-Dimensional Integer Array?

    Here's what you need to know.
    1) Read a file (DONE)
    2) Tokenize a String (DONE)
    3) Convert a string to an int
    To convert a String to an Int use the following code:
    ...
  20. Replies
    10
    Views
    4,014

    Re: Getting length of individual token?

    You need to change System.out.print(sinput2.nextToken() + " "); to System.out.println(temp + " ");
  21. Replies
    3
    Views
    3,439

    Re: J2ME Recommend Books

    Are you using an Android? If so the Android Development kit is free from google. You can use JavaSE instead of Me.
  22. Replies
    10
    Views
    3,071

    Re: Confused about my Career

    Do you have a BCS or MCS? If so try getting an internship with Google. They pay well and they love Java/C/C++ devs. I'm not saying that programming is about money, but you do need to live.
  23. Re: Want to upload csv file of greter than 200 Mb

    Haha my bad. I've never used JavaEE so good luck.
  24. Replies
    10
    Views
    4,014

    Re: Getting length of individual token?

    You have to get the token, and then check the size.


    StringTokenizer sinput2 = new StringTokenizer(sinput);
    String temp = sinput2.nextToken();
    System.out.println(temp.length()); //There is no...
  25. Re: Want to upload csv file of greter than 200 Mb

    If you're loading the whole file into the program you have to increase the heap past the default size. Try running your program in Terminal as so; java -Xmx500M nameOfClass.java

    If it's a jar:...
Results 1 to 25 of 307
Page 1 of 13 1 2 3 4