Search:

Type: Posts; User: mydarkpassenger

Search: Search took 0.15 seconds.

  1. Replies
    1
    Views
    1,961

    Re: Need java mentor

    I know this is a very late reply but I wasn't around. First off Netbeans is a great IDE and it's Java support is top notch. First thing I'd do is look into videos by Derek Banas on youtube. He has...
  2. Re: I'm a CSC major who hates programming.

    You're a new programmer and Java can be difficult (compared to other languages) to wrap your head around. What's cool about Java though is that it forces you to write better code than Python or PHP...
  3. Re: Is it possible to load classes at runtime that are discovered from a directory

    Thanks I'm checking it out now.
  4. Is it possible to load classes at runtime that are discovered from a directory

    I'm working on a command shell program. The idea is it's a blend between the AS/400 and a unix shell with dropdown autocompletes, syntax highlighting, etc. One feature I'd like to implement is a...
  5. Re: Should validation code exist in set methods or in a validate method

    I guess it make sense, I've been told any public method should check it's data so I assume it makes sense. I'll have to play with it a bit. Thanks for the reply!
  6. Should validation code exist in set methods or in a validate method

    I was wondering whether I need to validate data passed to a set method, or whether I should keep all the validation checks in a single method. In other words is it dangerous to set class variables...
  7. Replies
    7
    Views
    3,408

    Re: How do you use class.forname?

    I changed my code to:



    package directlink;

    public class Main {

    Main() throws InstantiationException, IllegalAccessException {
    try {
  8. Replies
    7
    Views
    3,408

    How do you use class.forname?

    I'm working on a project that needs to utilize external classes. A few years ago I used Class.forName to do this and I remember using an interface. However, I can't remember how this worked. Can...
  9. Re: Is it worth switching from PHP to JSP

    Now I'm actually trying out Ruby on Rails with RubyMine (which can inherit Netbeans shortcuts). The reason why is because when looking for hosting packages I did notice that Ruby and Python are...
  10. Is it worth switching from PHP to JSP

    I've been using PHP for a number of years as well as Java. One thing I like about Java is the great support for it in Netbeans and in other programs, plus I could work with only one language instead...
  11. Replies
    5
    Views
    4,343

    Re: How do you design a complex program

    Thanks for taking the time to respond to my question. First off, I use Netbeans. I love it and it's awesome for Java and even decent for PHP. I can't understand how anyone would use Notepad, it's...
  12. Replies
    5
    Views
    4,343

    Re: How do you design a complex program

    I've actually been reading that book. It is a good find. However, what I was really looking for was a way to keep an overview of my program so that I can see how my program interacts, what...
  13. Replies
    5
    Views
    4,343

    How do you design a complex program

    I was wondering if anyone knows of a book dedicated to designing a complex system, I'm not talking about code construction but the actual designing of a program. Something that helps with core...
Results 1 to 13 of 13