Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger

Wednesday, November 21, 2007

Code for Console output with format in java

import java.io.Console;
import java.sql.SQLException;

public class MainClass {
public static void main(String[] args) throws ClassNotFoundException, SQLException {
Console console = System.console();
if (console == null) {
System.err.println("sales: unable to obtain console");
return;
}

console.printf("%s ", "string");
}
}

No comments: