Search:

Type: Posts; User: DarthBane

Search: Search took 0.23 seconds.

  1. Replies
    23
    Views
    1,189

    [SOLVED] Re: This one is really hard

    What method led you to the solution?
  2. Replies
    3
    Views
    868

    Re: Regarding Java Concurrency

    The JVM threading architecture is based upon Solaris' LWP thread architecture. If you understand how Solaris' threads work, then you understand how the JVM's threading works.

    Look here : Lesson:...
  3. Replies
    23
    Views
    1,189

    [SOLVED] Re: This one is really hard

    The fact that you are stymied by the problem suggests the ERD will help you see the data pattern more clearly. That is what ERD's are for, visualization of data schema. As an added bonus, you will...
  4. Re: DOM and SAX warappers in servlet - help me understand the code

    Do you have direct access to the folder? Or has the "architect" arranged that these files must be fetched using ftp or similar?

    Is this folder in the filesystem of the machine where your...
  5. Re: DOM and SAX warappers in servlet - help me understand the code

    Why go to all this trouble?? The requests can synchronously process each element as it is received. Making things more complicated than necessary will only cause you extra work.


    There is no...
  6. Re: I'm a beginner and i'm searching for a basic example

    Have you tried any of the online tutorials?

    Oracle : Trail: Learning the Java Language (The Java™ Tutorials)
    Tutorialspoint : http://www.tutorial
    Java Beginner:...
  7. Replies
    23
    Views
    1,189

    [SOLVED] Re: This one is really hard

    I am trying to teach you how to think about the problem so you can solve it quickly. It is clear to me from your posts that you are trying to apply functional decomposition to these problems. That...
  8. Re: Where To start Developing a Web application in Java

    You should start at the beginning! :) The very first question you should answer about any software project : What is this intended to do? If the answer to this question is : "learn how to...
  9. Re: DOM and SAX warappers in servlet - help me understand the code

    XSLT is routinely used to format HTML outputs, usually from some XML input document.

    You have observed that there is one XSLT stylesheet for each web page in the application. This is the normal...
  10. Re: DOM and SAX warappers in servlet - help me understand the code

    I agree with your assessment that this is not clean code.

    The patterns used in XSLT transformation will not be found in this code. The doGet() method expects to receive parameters that identify...
  11. Replies
    23
    Views
    1,189

    [SOLVED] Re: This one is really hard

    Of course it can be done without OOP but it is much cleaner, elegant, and more maintainable if it is solved using object technology. I once wrote the solution to this problem is PL1!

    One can also...
  12. Replies
    23
    Views
    1,189

    [SOLVED] Re: This one is really hard

    ERD = Entity Relationship Diagram. These are the large charts you see the DBA's using. google to see what these are and how they work. We already talked about the three top level entities that are...
  13. Replies
    23
    Views
    1,189

    [SOLVED] Re: This one is really hard

    I had guessed your schooling did not teach this. My prior experience with east asian developers indicated to me that education there was not covering these topics. I was intending to teach you how...
  14. Replies
    23
    Views
    1,189

    [SOLVED] Re: This one is really hard

    There is more than one decomposition strategy to solve any computing problem. The strategy I see used most often in industry and taught in academia is 'functional decomposition'. You can google...
  15. Replies
    23
    Views
    1,189

    [SOLVED] Re: This one is really hard

    This is a very old problem sometimes called 'the ponds and islands problem'.

    The solution will become clear to you if you can visualize the data objects and how they interact. Think like a DBA to...
  16. Replies
    1
    Views
    1,214

    Re: which listener to use on video panel?

    To know which listener you need to use you need to know what kind of events this touchscreen device generates. Most touch screen controllers emulate a normal mouse where a finger press on the screen...
Results 1 to 16 of 16