Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by h0h0h0

  1. h0h0h0

    Certfied Associate (CX-310-019)

    Get the Head First book.
  2. h0h0h0

    How do you concentrate on more than one thing?

    I use the getting things done method.
  3. h0h0h0

    Class Design Questions

    Wait a sec - there is a difference between creating an object and persisting an object. I think it's been illustrated here. Using the constructor to create an object is a pretty standard usage. I'll second the idea of not persisting an object in a constructor. Give the developer the control...
  4. h0h0h0

    tomcat 5.5 server.xml (ip address config?)

    how abotu the local software firewall on the computer - is that allowing connections to your port? Can you at least ping the ip.address?
  5. h0h0h0

    Dealing with a Dictator

    as much as that helps me it's a very anti-social solution and could lead to trouble *shrug* i ended up leaving the company :)
  6. h0h0h0

    How to show the time Zone in Report?

    If you only have a date then you can't get the timezone unless there is another field with it on the database table. The only other way is to do a lookup to another database. Or another way is to have a string datatype with the ISO version of date time. That version of date time contains...
  7. h0h0h0

    file io question(s)

    easy boys
  8. h0h0h0

    Generating HTML tags (like CGI.pm does)

    Look at Jakarta Tag Lib stuff http://jakarta.apache.org/taglibs/doc/string-doc/string-1.1.0/index.html Download the Tag Lib (and associated libraries it requires) and place it in your /lib files directory for your project. Add a line in your web.xml that looks like the lines pointing to the...
  9. h0h0h0

    Generating HTML tags (like CGI.pm does)

    Ok - this is JSP It looks like that perl code is building a hyperlink. Java the language itself doesn't have a function that will do what you want but you can write one. There's a number of different ways to do what you want to do.. JSP can be used a number of different ways as well...
  10. h0h0h0

    Generating HTML tags (like CGI.pm does)

    Fishi - are you writing JSP?
  11. h0h0h0

    Unhandled exception type FileNotFoundException

    That means that Eclipse has parsed your code and found that you are not catching an exception that the compiler will expect you to catch. This is a nice feature because it will notify you of code that will break before you try and compile it. To fix this you can highlight the code and use the...
  12. h0h0h0

    OS in Java?

    Danny, Sun has some attempts at this. Check out http://en.wikipedia.org/wiki/JavaOS
  13. h0h0h0

    Java and Perl (JPL??)

    My answer wasn't a knock against you dmazz. Not sure how you even took it as a negative comment? I broadened my answer from "no you can't reuse perl scripts" to one that could encourage you to "re-use your skills" in the java world. :)
  14. h0h0h0

    Persisting preferences - the best way?

    I would have each User associated with a UserProfile object. The UserProfile object will contain ViewSettings. You can then pass the ViewSettings object into the instance of the form or page on loadtime. When the page loads it will use the ViewSettings to manipulate it's display to the user...
  15. h0h0h0

    Application global variables

    Of course, These default constants will be in some XML/PROPERTIES file. Load them into a global object and then get/set them as necessary. Make sure that you always go to the global object for parameters when needed instead of caching them in other objects. I'm not super familiar with app...

Part and Inventory Search

Back
Top