vote up 3 vote down star
2

I believe people still write a lot of console applications, including interactive ones, especially small utilities and administrative interfaces. Mostly for sake of simplicity.

Do you write interactive console applications? Do you think it should be even easier than already is?

U: for clarity, let's define 'interactive console application' an any application running in terminal listening to user's commands. I.e. some command shell.

Java and .NET suggestions especially welcome.

I do have a very simple solution: cliche.sourceforge.net.

package asg.cliche.sample;

import asg.cliche.Command;
import asg.cliche.ShellFactory;
import java.io.IOException;

public class HelloWorld {

    @Command // One,
    public String hello() {
        return "Hello, World!";
    }

    @Command // two,
    public int add(int a, int b) {
        return a + b;
    }

    public static void main(String[] args) throws IOException {
        ShellFactory.createConsoleShell("hello", "", new HelloWorld())
            .commandLoop(); // and three.
    }
}

Three additional lines of code aren't bad, I think...

flag

64% accept rate

11 Answers

vote up 0 vote down

Depends what you define "interactive". I like to write programs I run in the terminal. You don't always need a GUI.

Sometimes it's just a little program that automatically converts data it finds in a given directory. Just a tool, quick and dirty.

link|flag
vote up 2 vote down

For *nix (Linux, etc.) take a look at ncurses library.

I wrote a few application using it in the past few years. Some small utility applications that need to run on everything from 486 to Quad Core. And you also get a benefit when using it over slow network, since there is no need to load the entire graphic screen.

link|flag
There are also curses-for-windows libraries that allow the applications to port to windows as well. – ConcernedOfTunbridgeWells Feb 17 at 10:09
vote up 5 vote down

In respect to Java, creating interactive console applications have gotten a whole lot easier with the introduction of the Scanner class in Java 5.

When I first learned Java in a class room, interactivity in Java automatically meant either an applet or a GUI application using AWT or Swing. Today, when taking a look at beginner tutorials, I've found that they have used the Scanner class to perform console input. There is a section on Scanning in The Java Tutorial as well.

That said, I haven't had an opportunity to make interactive console applications using Java, but I do find that console applications is a very easy way to produce an application that don't require the use of a graphical user interface. In addition, programming for the console tends to be much easier, as it eliminates the need to have to have code to produce the GUI itself. In trivial programs, there may actually be more code for the GUI than the main functionality of the application itself.

In addition, just as a personal preferences, I like the idea of interactive console applications, as I first started programming back in DOS, so there was no GUI in the first place.

link|flag
vote up 1 vote down

I don't very often write interactive console applications. In general, I find that when I'm writing a standalone application or script, it's to help perform some step in the development process at work. As such, non-interactive applications tend to be more useful to me, as they can be used to automate the step, by calling the application from a post-build step or an ant task or whatever's needed.

That being said, I still think there's a place for interactive console applications, and in fact there's nothing keeping my applications from also being interactive - I just tend not to bother, although earlier this week I did find myself thinking about extending a small utility to be interactive, probably using the Python cmd module, which I've used before and found to be helpful.

link|flag
vote up 0 vote down
  • Whenever I write an application that will ultimately run as a service on a server, I write a thin console wrapper around it, with commands to start, stop, interrogate data and so on. Being able to easily start and interact with the prototype service makes testing and debugging much more straightforward.

  • If I'm writing a tool for myself or other developers to use then interactive console applications are often the way to go.

For Java console applications, the Java Curses project is useful.

link|flag
vote up 1 vote down

I prefer, for flexibility, that any input to my console apps comes through stdin. I can still operate on files, by simply cat-ing them through a pipe. This has the added bonus of making the application interactive (though that is in general only useful on text-input). Not very user friendly though, as I generally don't bother adding too much feedback. Like Blair Conrad, I just tend not to bother. There would be nothing wrong with expanding them.

I also like building bigger things as a set of command line tools, using pipes for communication. Ever since I fell in love with the Unix Way back in the 90s.

link|flag
vote up 0 vote down

I still write command line apps when I'm testing something that I haven't used before ("something new" here could be as simple as a clever idiom, or as complex as a security library). I find it helps me concentrate on the new concept without all the GUI code distracting me.

There haven't been a lot of advances in command line applications recently, but there have been a few. The Scanner class was introduced in Java 5, for example. I'm reasonably sure the reason for so few advances in command line tools is that most new development is for Web applications, and the majority of the balance is for GUI apps.

link|flag
vote up 3 vote down

I write console apps, but not interactive. I find that console apps are better when done in old *nix tradition of using lots of "--" flags. This way you (and your user) can combine them, reuse them, and whatnot. Just saying.

link|flag
vote up 1 vote down

In addition to the Scanner class introduced in Java 5, there's a new Console class introduced in Java 6. You can get the current Console using System.console().

link|flag
vote up 0 vote down

Additional info for dotNet-Mono. You can create interactive console applications in Mono by using MonoCurses

link|flag
vote up 2 vote down

(This is for C#, but applies for Java too)

The Command pattern is how I've implemented them before, with a while(text != "exit").

It definitely makes it more manageable by having one class per command, and then some kind of "dispatcher" or Factory style class that parses the input text and creates the appropriate class. You can do this with a bog standard Factory or an AbstractFactory, plugins and reflection if you have a big console application.

Each command class implements a simple interface with a

string ProcessCommand(string[] args)
{

}

The string it returns is the message to display back to the client. Of course this limits each command to only having 1 interaction instead of a chain. You can work around that by holding a state/context object too:

string ProcessCommand(string[] args,Context context)
{

}

So you might type:

set connection some-server
set password mypassword
show users

And the connection and password are stored inside the context object, either as a key/value pair or actual properties.

It's not really groundbreaking, but they are quite fulfilling to make.


For parsing commands you can also look at this argument parser, it works quite well and turns the arguments into a dictionary/hashtable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.