Hlavní menu

Nástroje

PremekBrada / SimpleJavaIo

View (print) - Edit page | Recent changes - Page history

Updated 14 September 2005, 11:50 by PremekBrada

PremekBrada.SimpleJavaIo History

Hide minor edits - Show changes to output

14 September 2005, 11:50 by PremekBrada -
Changed lines 17-21 from:
@]
to:
@]

----

Zpět na NametyImpl
14 September 2005, 11:44 by PremekBrada -
Added lines 1-17:
h1. SimpleJavaIo library

Goal: make simple text console i/o simple in Java.

h2. Motivation examples

[@
import simpleio.*;

...

SioOut.print("Output:\n");
SioIn.use( someObject.getInputStream() );
int i = SioIn.readInt();
String s = SioIn.readString();

@]