Search:

Type: Posts; User: Bacon n' Logic

Search: Search took 0.08 seconds.

  1. Re: Help needed to figure out why I keep getting error messages in Eclipse

    First of all welcome to the forum :) I'm also sorry to hear about your brain injury - nothing to serious I hope.

    I've just recently started some Android programming myself, but tend to go for...
  2. Replies
    1
    Views
    1,764

    Re: Not Reading From Text File

    When ever I get these sorts of problems I first check the following:

    -Do the files exist ?
    -Have I got the right case/spelling for the file names?
    -Do the files have the correct data in them?...
  3. Replies
    2
    Views
    1,320

    Re: NEED SOME HELP

    -Do you have to use a while?
    -If so, think about a condition that when encountered will stop the loop (a certain number reached, a specific value)
    -Is there a way in Java to convert a character to...
  4. Replies
    3
    Views
    1,536

    Re: HTML Parsing

    That's 31:

    if(content.hasText()){System.out.println("result is " + content.text());
  5. Re: Help on developing code for autoform fill in website

    @Norm - parsing HTML

    Java's Standard Library has this class:

    ParserDelegator (Java Platform SE 7 )

    Which can do HTML parsing for you. However, most Java programmers I know tell me steer...
  6. Replies
    3
    Views
    1,536

    HTML Parsing

    Hi folks, I'm trying to parse some HTML using the Jsoup 3rd party library but I seem to be getting a nasty exception everytime I try running the program. (for reasons unbeknown to me)




    import...
  7. Replies
    3
    Views
    1,880

    Re: banking system

    Throw in a nice foot rub for good measure :-j
  8. Re: The simpler the program - seemingly the more scope for error :p

    Having put a '\n' at the end of my input text file - the problem seems resolved - albeit with the '\n' now being visible on output. Is this the intended solution, Or is there another way?
  9. Re: The simpler the program - seemingly the more scope for error :p

    hmm, ok. So I realise that the condition of the while loop remains static - and thus will never terminate. But I'm not to sure of how to change this.


    My first guess was to Change my code to this...
  10. Re: The simpler the program - seemingly the more scope for error :p

    Ah, I like your efficiency with the anonymous classes instead of one big lump of chained code - definitely will keep a mental note of that cheers ;) However, no dice I'm afraid - I was more...
  11. The simpler the program - seemingly the more scope for error :p

    Hi again,

    Just thought I'd check with you guys to see where I've gone wrong with this simple I/O program. Having just done quite a bit of reading on I/O I thought would write myself I nice little...
  12. Replies
    6
    Views
    3,333

    Re: Some Theory based questions

    Can I just say I big thanks to everyone who has posted on here; I think I've gained some understanding on the topic from all the responses made. And the examples in particular have been great btw...
  13. Replies
    6
    Views
    3,333

    Some Theory based questions

    I've been studying I/O recently, using the Sun tutorials mainly as my primary resoucre and I've come across I few syntactical issues that I don't quite understand and would appreciate any light at...
  14. Re: The Problem With My Code Is That It Doesn't Exist Yet. (Help w/ Retarded Teacher)

    Having had a pretty inept ICT (British equivalent I guess?) teacher myself during my high school years, I know the how irksome it can be. Almost put me off the whole thing, which I'm glad I didn't go...
  15. Replies
    5
    Views
    2,144

    Re: Java Book

    I personally liked "Java in 60 Minutes a Day" by Rich Raposa (Wiley Publishing). It's a really good read which I always find a big plus; but not only that it avoids the common pitfall of not going...
  16. Replies
    5
    Views
    2,329

    Re: interface

    I've been doing some reading on GUI's recently, and they involve interfaces when implementing the listener and the source of the Event. How is this relevant to your original question I hear you ask...
  17. Replies
    6
    Views
    1,435

    Re: Me = Newbie;

    Wow, thanks for such an informative post. I think I can safely say my assumptions have been well and truely quashed!



    p.s. And I'm glad my choice of username has not gone unnoticed :p
  18. Replies
    3
    Views
    6,358

    Re: WHAT IS WRONG HERE PLEASE?

    The 2 guys above have already answered this and quite well I must add; but just in case (let me know if this is not needed lol ;) )

    In your actual progam (the one with the main method); you've...
  19. Replies
    6
    Views
    1,435

    Me = Newbie;

    Hi folks,

    I'm a university student from the UK looking to improve my knowledge of Java :) . Admitedly, up until undertaking my Computer Science based course I had very little experience in...
Results 1 to 19 of 19