Search:

Type: Posts; User: gdjs

Search: Search took 0.12 seconds.

  1. Replies
    2
    Views
    1,201

    Re: Looking at a string ...

    Look up 'Regular Expressions'. This is a good place to start:

    Lesson: Regular Expressions (The Java™ Tutorials > Essential Classes)
  2. Replies
    8
    Views
    1,392

    Re: Copy Method screw ups

    The FileInputStream class has three constructors:



    FileInputStream(File file);
    FileInputStream(FileDescriptor fdObj);
    FileInputStream(String name);


    You're using the third one, correctly...
  3. Replies
    2
    Views
    1,479

    Re: Compile Error, tried everything please help

    I'd suggest that you wrap your code in between code tags, so it preserves indentation and receives syntax highlighting. I think more people (including myself) will give a shot at reading it if you do...
  4. Replies
    3
    Views
    1,836

    Re: Compiling many source files at once

    Here's what will save you:



    javac -help
  5. Replies
    14
    Views
    3,008

    Re: How to display a Java method using Java Swing

    Swing is a framework that enables you to create graphical user interfaces. It's not a different way of calling methods. Remember that, when calling a method, you must append the suffix '()'.

    ...
Results 1 to 5 of 5