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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  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...
  16. h0h0h0

    Java and Perl (JPL??)

    Syntax is cheap - meaning that you can use your perl skills in a pure java environment. But it's not syntax that you really want to re-use, it's your capability to develop creative solutions. So.. Think of your skills as programming skills, not just perl. :) And do it in all java :)
  17. h0h0h0

    confused by 'this'

    Yes, the class you place in there has to implement ActionListener.
  18. h0h0h0

    Application global variables

    Makes sense. So sounds like these variables are CONSTANTS. What you can do is create a global properties class (could be a hash map) and call this from your code OR load these constants at run time into the app level variable. Then write a proxy class for this so that your code calls...
  19. h0h0h0

    Does Java applet require webserver?

    of course - he didn't specify what he was building and there seemed to be some lumping together of java application/applet. Just wanted to clarify for him. Hilber - how will users use this?
  20. h0h0h0

    Does Java applet require webserver?

    just to say another thing. If you build a java application as opposed to an applet then you won't need a web server or an app server. For example - a java application would be delivered as a jar and run from a console, but an applet will be delivered over a web browser.

Part and Inventory Search

Back
Top